frenzy/priv/repo/migrations/20190321221841_create_group...

12 lines
180 B
Elixir
Raw Normal View History

2019-03-21 23:21:56 +00:00
defmodule Frenzy.Repo.Migrations.CreateGroups do
use Ecto.Migration
def change do
create table(:groups) do
add :title, :string
timestamps()
end
end
end