mobilizon.chapril.org-mobil.../priv/repo/migrations/20171207163640_create_groups.exs
Thomas Citharel 90ceb4f6fe initial commit
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2017-12-08 09:58:14 +01:00

17 lines
322 B
Elixir

defmodule Eventos.Repo.Migrations.CreateGroups do
use Ecto.Migration
def change do
create table(:groups) do
add :title, :string
add :description, :string
add :suspended, :boolean, default: false, null: false
add :url, :string
add :uri, :string
timestamps()
end
end
end