2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Repo.Migrations.CreateCategories do
|
2017-12-08 09:58:14 +01:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
create table(:categories) do
|
2019-02-22 14:18:52 +01:00
|
|
|
add(:title, :string)
|
|
|
|
add(:description, :string)
|
|
|
|
add(:picture, :string)
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-02-22 14:18:52 +01:00
|
|
|
create(unique_index(:categories, [:title]))
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|