diff --git a/server.js b/server.js index b24fbad..7e72dae 100644 --- a/server.js +++ b/server.js @@ -2,7 +2,9 @@ var app = require('express')(); // Create an instance of an Express app var mobileApp = require('azure-mobile-apps')(); // Create an instance of a Mobile App with default settings -mobileApp.tables.add('Book'); // Create a table for 'Book' with default settings + +mobileApp.tables.add('Clients'); // Create a table for 'Book' with default settings + app.use(mobileApp); app.listen(process.env.PORT || 3000); diff --git a/tables/book.js b/tables/Clients.js similarity index 100% rename from tables/book.js rename to tables/Clients.js diff --git a/tables/book.json b/tables/Clients.json similarity index 99% rename from tables/book.json rename to tables/Clients.json index 8983439..0caec75 100644 --- a/tables/book.json +++ b/tables/Clients.json @@ -16,4 +16,3 @@ "access": "anonymous" } } - \ No newline at end of file