ezcontainer_example/priv/repo/migrations/20231025082520_create_projects.exs

13 lines
248 B
Elixir
Raw Normal View History

2023-10-25 04:48:36 -04:00
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