mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
11 lines
293 B
Elixir
11 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
|