more changes
This commit is contained in:
parent
beaf92f7c4
commit
a3a4af7965
18 changed files with 165 additions and 24 deletions
12
priv/repo/migrations/20231025082520_create_projects.exs
Normal file
12
priv/repo/migrations/20231025082520_create_projects.exs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
defmodule EzcontainerRailway.Repo.Migrations.CreateProjects do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create table(:projects) do
|
||||
add :user_id, :string
|
||||
add :project_id, :string
|
||||
|
||||
timestamps(type: :utc_datetime)
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue