Current section
Files
Jump to
Current section
Files
priv/repo/migrations/20200526104536_create_posts.exs
defmodule EctoStreamFactory.TestRepo.Migrations.CreatePosts do
use Ecto.Migration
@table "posts"
def change do
create table(@table) do
add :author_id, references(:users, on_delete: :delete_all), null: false
add :body, :text, null: false
end
create index(@table, :author_id)
end
end