mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Table needed for Rich Text AR model
This commit is contained in:
parent
34468ca4cc
commit
aa42bf2027
1 changed files with 14 additions and 0 deletions
14
db/migrate/201805281641_create_action_text_tables.rb
Normal file
14
db/migrate/201805281641_create_action_text_tables.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
class CreateActionTextTables < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :action_text_rich_texts do |t|
|
||||
t.string :name, null: false
|
||||
t.text :body, null: false
|
||||
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
|
Loading…
Reference in a new issue