559c889f1b
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
17 lines
300 B
Elixir
17 lines
300 B
Elixir
defmodule Mobilizon.Repo.Migrations.CreateCategories do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:categories) do
|
|
add :title, :string
|
|
add :description, :string
|
|
add :picture, :string
|
|
|
|
timestamps()
|
|
end
|
|
|
|
create unique_index(:categories, [:title])
|
|
|
|
end
|
|
end
|