|
|
|
|
@ -12,10 +12,10 @@ return new class extends Migration |
|
|
|
|
public function up(): void |
|
|
|
|
{ |
|
|
|
|
Schema::table('users', function (Blueprint $table) { |
|
|
|
|
$table->string('username'); |
|
|
|
|
$table->string('restaurant_name'); |
|
|
|
|
$table->string('instagram_account'); |
|
|
|
|
$table->string('template'); |
|
|
|
|
$table->string('username')->nullable(); |
|
|
|
|
$table->string('restaurant_name')->nullable(); |
|
|
|
|
$table->string('instagram_account')->nullable(); |
|
|
|
|
$table->string('template')->nullable(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|