aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/db/migrate
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2019-01-04 23:09:12 -0500
committerGitHub <noreply@github.com>2019-01-04 23:09:12 -0500
commitdf8ee09ce71338cdf9816225df1bdebc707f3560 (patch)
tree5b2d265cdaca5c5859205389088b2bdc2327d935 /actiontext/db/migrate
parent88349cee3cb8f7bba662232fbc444eeebc8bb227 (diff)
parent0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93 (diff)
downloadrails-df8ee09ce71338cdf9816225df1bdebc707f3560.tar.gz
rails-df8ee09ce71338cdf9816225df1bdebc707f3560.tar.bz2
rails-df8ee09ce71338cdf9816225df1bdebc707f3560.zip
Merge pull request #34873 from georgeclaghorn/actiontext
Import Action Text
Diffstat (limited to 'actiontext/db/migrate')
-rw-r--r--actiontext/db/migrate/201805281641_create_action_text_tables.rb14
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