fbitipline/priv/repo/migrations/AAA.exs
expand-sys 0839224e8d blah
2024-09-17 12:33:54 +10:00

12 lines
244 B
Elixir

defmodule Fbittipline.Repo.Migrations.CreateSubmissions do
use Ecto.Migration
def change do
create table(:submissions) do
add :title, :string, null: false
add :body, :text, null: false
timestamps()
end
end
end