ezcontainer_example/priv/repo/migrations/20231025082520_create_projects.exs
2023-10-25 04:48:43 -04:00

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