Editable workshops.

This commit is contained in:
codevictory
2021-07-06 19:06:20 +03:00
parent eb93d7afc1
commit b4a22b68d2
17 changed files with 473 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
defmodule Runosaari.Repo.Migrations.CreateWorkshops do
use Ecto.Migration
def change do
create table(:workshops) do
add :name, :string
add :text, :string, size: 2000
add :seqnum, :integer
timestamps()
end
end
end