dotfiles/priv/repo/migrations/20231119141943_create_apps.exs

12 lines
174 B
Elixir
Raw Normal View History

2023-11-20 16:50:24 +00:00
defmodule Prymn.Repo.Migrations.CreateApps do
use Ecto.Migration
def change do
create table(:apps) do
add :name, :string
timestamps()
end
end
end