fix+add: seats + seat-chooser

This commit is contained in:
Didier Slof 2023-01-01 20:13:11 +01:00
parent 2c6745e812
commit b0cc5b5278
Signed by: didier
GPG key ID: 01E71F18AA4398E5
31 changed files with 808 additions and 115 deletions

View file

@ -19,8 +19,8 @@ return new class extends Migration
$table->string('cinema_name');
$table->foreignId('address_id')->constrained('addresses', 'address_id');
$table->foreignId('user_id')->constrained('users', 'user_id'); // who created this cinema
$table->timestamp('cinema_open')->nullable();
$table->timestamp('cinema_close')->nullable();
$table->time('cinema_open');
$table->time('cinema_close');
});
}