Add ActionText

This commit is contained in:
Mathieu Magnin 2019-04-09 15:44:36 +02:00 committed by Paul Chavard
parent 56ab9d7131
commit b34f8fbe3d
7 changed files with 87 additions and 1 deletions

View file

@ -16,6 +16,16 @@ ActiveRecord::Schema.define(version: 2019_06_27_132911) do
enable_extension "plpgsql"
enable_extension "unaccent"
create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
t.text "body"
t.string "record_type", null: false
t.bigint "record_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["record_type", "record_id", "name"], name: "index_action_text_rich_texts_uniqueness", unique: true
end
create_table "active_storage_attachments", force: :cascade do |t|
t.string "name", null: false
t.string "record_type", null: false