Hash :
bb810201
Author :
Thomas de Grivel
Date :
2021-11-16T17:03:44
defmodule Kmxgit.Repo.Migrations.CreateOrganisations do
use Ecto.Migration
def change do
create table(:organisations) do
add :description, :string
add :name, :string
add :slug, :string, null: false
timestamps()
end
create index(:organisations, ["(lower(slug))"], unique: true)
end
end