"Always, no sometimes, think it's me But you know I know when it's a dream I think I know I mean a "Yes" but it's all wrong That is I think I disagree"
- The Beatles
| 'use strict'; | |
| var dbm; | |
| var type; | |
| var seed; | |
| /** | |
| * We receive the dbmigrate dependency from dbmigrate initially. | |
| * This enables us to not have to rely on NODE_PATH. | |
| */ |
Checkout http://knexjs.org for tutorials an instructions
npm install knex --saveknex variable with your appropriate connection options passed in.| { | |
| "users": { | |
| "id": "number, int(11), NOT null, unique, autoincrement", | |
| "email": "string, varchar(255), NOT null, unique", | |
| "first_name": "string, varchar(255), null", | |
| "last_name": "string, varchar(255), null", | |
| "password": "string, varchar(255), NOT null, unique", | |
| "created": "date, datetime, NOT null", | |
| "updated": "date, datetime, NOT null" | |
| }, |
apt-get -y update
add-apt-repository ppa:ondrej/php
apt-get -y install php5.6 php5.6-mcrypt php5.6-mbstring php5.6-curl php5.6-cli php5.6-mysql php5.6-gd php5.6-intl php5.6-xsl php5.6-zip
apt-get -y update
We follow a particular standard for developing the RESTful resources in BandManager's API for data. These requirements are as follows:
EnsembleFeeController, not EnsembleFeesController.Route::resource() method in the routes file.::resource() definition.