neuester Stand
This commit is contained in:
@@ -13,12 +13,13 @@ class CreateTables extends Migration {
|
||||
{
|
||||
Schema::create('users', function($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->string('name')->unique();
|
||||
$table->string('email');
|
||||
$table->string('password');
|
||||
$table->boolean('admin');
|
||||
$table->text('settings');
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
});
|
||||
|
||||
Schema::create('films', function($table) {
|
||||
|
Reference in New Issue
Block a user