This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/app/database/migrations/2013_11_09_184814_system.php
2013-11-09 21:23:58 +01:00

31 lines
427 B
PHP

<?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');
}
}