Neues Update
This commit is contained in:
31
app/database/migrations/2013_11_09_184814_system.php
Normal file
31
app/database/migrations/2013_11_09_184814_system.php
Normal 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');
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user