add pipelines

This commit is contained in:
2022-07-25 20:12:11 -04:00
parent 3347b26256
commit 0fca0ead12
13 changed files with 569 additions and 0 deletions

View File

@ -0,0 +1,14 @@
defmodule Memex.Repo.Migrations.CreatePipelines do
use Ecto.Migration
def change do
create table(:pipelines, primary_key: false) do
add :id, :binary_id, primary_key: true
add :title, :string
add :description, :text
add :visibility, :string
timestamps()
end
end
end