12 lines
180 B
Elixir
12 lines
180 B
Elixir
|
defmodule Frenzy.Repo.Migrations.CreateGroups do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create table(:groups) do
|
||
|
add :title, :string
|
||
|
|
||
|
timestamps()
|
||
|
end
|
||
|
end
|
||
|
end
|