| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 12 |
| Ratio | 80 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function up() |
||
| 17 | { |
||
| 18 | View Code Duplication | DB::transaction(function () { |
|
| 19 | Schema::create('cosmicradiotv_podcast_shows', function (Blueprint $table) { |
||
| 20 | $table->engine = 'InnoDB'; |
||
| 21 | $table->increments('id'); |
||
| 22 | $table->string('name'); |
||
| 23 | $table->string('slug'); |
||
| 24 | $table->text('description')->nullable(); |
||
| 25 | $table->timestamps(); |
||
| 26 | |||
| 27 | $table->unique('slug'); |
||
| 28 | }); |
||
| 29 | }); |
||
| 30 | } |
||
| 31 | |||
| 41 | } |