12 lines
248 B
Elixir
12 lines
248 B
Elixir
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
|