Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function up() |
||
16 | { |
||
17 | Schema::create('fg_daily_services', function (Blueprint $table) { |
||
18 | $table->string('id')->index(); |
||
19 | $table->string('ministry_id', 150)->index(); |
||
20 | $table->enum('day', Helper::$weekDays); |
||
21 | $table->string('alias')->nullable(); |
||
22 | $table->string('start'); |
||
23 | $table->string('finish'); |
||
24 | $table->timestamps(); |
||
25 | |||
26 | $table->foreign('ministry_id')->references('id')->on('fg_ministries')->onDelete('cascade'); |
||
27 | }); |
||
40 |