mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
10 lines
293 B
Elixir
10 lines
293 B
Elixir
defmodule Philomena.Repo.Migrations.CreateAutocomplete do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:autocomplete, primary_key: false) do
|
|
add :content, :binary, null: false
|
|
timestamps(inserted_at: :created_at, updated_at: false, type: :utc_datetime)
|
|
end
|
|
end
|
|
end
|