Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function up(): void |
||
16 | { |
||
17 | Schema::create('blog_etc_uploaded_photos', static function (Blueprint $table) { |
||
18 | $table->increments('id'); |
||
19 | $table->text('uploaded_images')->nullable(); |
||
20 | $table->string('image_title')->nullable(); |
||
21 | $table->string('source')->default('unknown'); |
||
22 | $table->unsignedInteger('uploader_id')->nullable()->index(); |
||
23 | |||
24 | $table->timestamps(); |
||
25 | }); |
||
26 | |||
27 | Schema::table('blog_etc_posts', static function (Blueprint $table) { |
||
28 | $table->string('seo_title')->nullable(); |
||
29 | }); |
||
44 |