This commit is contained in:
2013-09-08 02:08:27 +02:00
parent 6d715e4090
commit 5cb555e869
15 changed files with 1358 additions and 5 deletions

View File

@@ -0,0 +1,76 @@
<?php
use Illuminate\Database\Migrations\Migration;
class CreateTables extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function($table) {
$table->increments('id');
$table->string('name');
$table->string('email');
$table->string('password');
$table->boolean('admin');
$table->text('settings');
$table->timestamps();
});
Schema::create('films', function($table) {
$table->increments('id');
$table->string('name');
$table->bigInteger('tvdbid');
$table->date('vorgeschlagen');
$table->date('gesehen')->nullable();
$table->integer('user');
$table->timestamps();
});
Schema::create('comments', function($table) {
$table->increments('id');
$table->integer('user');
$table->string('headline');
$table->text('text');
$table->integer('film');
$table->integer('event');
$table->timestamps();
});
Schema::create('events', function($table) {
$table->increments('id');
$table->string('name');
$table->date('datum');
$table->text('beschreibung');
$table->timestamps();
});
Schema::create('votes', function($table) {
$table->increments('id');
$table->integer('film');
$table->integer('user');
$table->boolean('stimme');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
Schema::drop('films');
Schema::drop('comments');
Schema::drop('events');
Schema::drop('votes');
}
}