mirror of
https://github.com/Expand-sys/fbitipline
synced 2025-12-17 06:12:16 +11:00
12 lines
244 B
Elixir
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
|