16
priv/repo/migrations/20171207163640_create_groups.exs
Normal file
16
priv/repo/migrations/20171207163640_create_groups.exs
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
Reference in New Issue
Block a user