Running a migration in the beta edition of the latest version of the wheels framework. it fails with
Variable $FILE is undefined.
Migration File
t = createTable(name='users');
t.string('username,password,email');
t.boolean('isActive');
t.datetime('activatedAt');
t.references('role');
t.timestamps();
t.create();
dropTable('users');
Running a migration in the beta edition of the latest version of the wheels framework. it fails with
Variable $FILE is undefined.
Migration File
t = createTable(name='users');
t.string('username,password,email');
t.boolean('isActive');
t.datetime('activatedAt');
t.references('role');
t.timestamps();
t.create();
dropTable('users');