90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
15 lines
265 B
Elixir
15 lines
265 B
Elixir
defmodule Eventos.Repo.Migrations.CreateCategories do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:categories) do
|
|
add :title, :string
|
|
add :picture, :string
|
|
|
|
timestamps()
|
|
end
|
|
|
|
create unique_index(:categories, [:title])
|
|
end
|
|
end
|