Ich Ich, gros commit
This commit is contained in:
@ -15,9 +15,15 @@ class CreateRacesTable extends Migration
|
||||
{
|
||||
Schema::create('races', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->dateTime('start_date');
|
||||
$table->dateTime('end_date');
|
||||
$table->dateTime('end_date')->nullable();
|
||||
$table->integer('duration');
|
||||
$table->integer('autonomie_kart_sec');
|
||||
$table->integer('autonomie_kart_humide');
|
||||
$table->integer('relay_default_duration');
|
||||
$table->string('stand_duration');
|
||||
$table->text('comment')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user