| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::create( |
||
| 16 | 'media__file_translations', |
||
| 17 | function (Blueprint $table) { |
||
| 18 | $table->engine = 'InnoDB'; |
||
| 19 | $table->increments('id'); |
||
| 20 | $table->integer('file_id')->unsigned(); |
||
| 21 | $table->string('locale')->index(); |
||
| 22 | $table->string('description'); |
||
| 23 | $table->string('alt_attribute'); |
||
| 24 | $table->string('keywords'); |
||
| 25 | $table->unique(['file_id', 'locale']); |
||
| 26 | $table->foreign('file_id')->references('id')->on('media__files')->onDelete('cascade'); |
||
| 27 | } |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 41 |