Add (tint)

This commit is contained in:
2023-11-21 01:22:06 +08:00
parent e4bab8dcec
commit 84c68b2c0c
43 changed files with 257 additions and 143 deletions

View File

@@ -12,7 +12,7 @@
public function up(): void
{
Schema::table('posts', function (Blueprint $table) {
$table->string('image_ref_url')->nullable();
$table->string('image_ref_url')->nullable();
});
}
@@ -22,7 +22,7 @@ public function up(): void
public function down(): void
{
Schema::table('posts', function (Blueprint $table) {
$table->dropColumn(('image_ref_url'));
$table->dropColumn(('image_ref_url'));
});
}
};