Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Sep 24, 2024
1 parent b47d2bd commit e3bb4d2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public function up(): void
{
Schema::create('bazar_categories', static function (Blueprint $table): void {
$table->id();
$table->foreignId('parent_id')->nullable()->constrained('bazar_categories')->nullOnDelete();
$table->string('name');
$table->string('slug')->unique();
$table->text('description')->nullable();
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public function up(): void
{
Schema::create('bazar_tax_rates', static function (Blueprint $table): void {
$table->id();
$table->string('name');
$table->integer('value')->unsigned();
$table->boolean('shipping')->default(false);
$table->timestamps();
Expand Down

0 comments on commit e3bb4d2

Please sign in to comment.