AUTOGEN: Locations.

This commit is contained in:
codevictory
2021-03-30 22:40:29 +03:00
parent 200d695586
commit adacd91591
12 changed files with 474 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
defmodule Runosaari.Repo.Migrations.CreateLocations do
use Ecto.Migration
def change do
create table(:locations) do
add :name, :string
add :address, :string
add :reserved_seats, :integer
add :max_seats, :integer
add :description, :string
timestamps()
end
end
end