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