diff options
author | George Claghorn <george@basecamp.com> | 2019-01-04 19:43:11 -0500 |
---|---|---|
committer | George Claghorn <george@basecamp.com> | 2019-01-04 22:22:49 -0500 |
commit | 0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93 (patch) | |
tree | 91b8ddcf86b15356cd8d3dee235bf53a1778572b /actiontext/db | |
parent | 8a23a0e8c20c0cccf0073906d7dd7f809bfa836d (diff) | |
parent | cfe4674d3637c746cdb3c2b5131e2de498775529 (diff) | |
download | rails-0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93.tar.gz rails-0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93.tar.bz2 rails-0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93.zip |
Import Action Text
Diffstat (limited to 'actiontext/db')
-rw-r--r-- | actiontext/db/migrate/201805281641_create_action_text_tables.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/actiontext/db/migrate/201805281641_create_action_text_tables.rb b/actiontext/db/migrate/201805281641_create_action_text_tables.rb new file mode 100644 index 0000000000..74c7a0ecb9 --- /dev/null +++ b/actiontext/db/migrate/201805281641_create_action_text_tables.rb @@ -0,0 +1,14 @@ +class CreateActionTextTables < ActiveRecord::Migration[6.0] + def change + create_table :action_text_rich_texts do |t| + t.string :name, null: false + t.text :body, limit: 16777215 + t.references :record, null: false, polymorphic: true, index: 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 + end +end |