Neues Update

This commit is contained in:
2013-11-09 21:23:58 +01:00
parent c17b699d1b
commit 114e658b7b
7 changed files with 157 additions and 28 deletions

View File

@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
class System extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('system', function($table) {
$table->increments('id');
$table->integer('nextfilm');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('system');
}
}