Current section

Files

Jump to
thesis priv templates thesis.install create_thesis_files_table.exs
Raw

priv/templates/thesis.install/create_thesis_files_table.exs

defmodule <%= base %>.Repo.Migrations.CreateThesisFilesTable do
@moduledoc false
use Ecto.Migration
def change do
create table(:thesis_files) do
add :slug, :string
add :content_type, :string
add :filename, :string
add :data, :binary
timestamps()
end
create unique_index(:thesis_files, [:slug])
end
end