neuester Stand

This commit is contained in:
2013-09-11 16:02:44 +02:00
parent 5cb555e869
commit 7d21be1a66
14 changed files with 707 additions and 29 deletions

View File

@@ -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) {