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