Ce dépôt a été archivé le 2025-08-22. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
Fichiers
dumbo/app/database/migrations/2013_11_09_184814_system.php
2013-11-09 21:23:58 +01:00

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