Editable info paragraphs.

This commit is contained in:
codevictory
2021-06-12 00:16:35 +03:00
parent b128fea663
commit 61a2792dbe
17 changed files with 450 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
defmodule Runosaari.Repo.Migrations.CreateInfoParagraphs do
use Ecto.Migration
def change do
create table(:info_paragraphs) do
add :content, :string, size: 3000
add :seqnum, :integer
timestamps()
end
end
end