Skip to content

Commit

Permalink
add template banner
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Jan 18, 2025
1 parent 0528de2 commit 515128a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,8 @@
*/
public function up(): void
{
Schema::create('template', function (Blueprint $table) {
$table->id();
$table->string('template_name');
Schema::table('template', function (Blueprint $table) {
$table->string('template_banner');
$table->string('des');
$table->string('template_link');
$table->string('template_countent');
$table->string('created_at');
$table->string('updated_at');
});
}

Expand All @@ -28,6 +21,8 @@ public function up(): void
*/
public function down(): void
{
Schema::dropIfExists('template');
Schema::table('template', function (Blueprint $table) {
$table->dropColumn('template_banner');
});
}
};

This file was deleted.

0 comments on commit 515128a

Please sign in to comment.