Files
nairobi/db/migrate/20181108142513_create_heading_content_blocks.rb
2018-11-27 09:37:35 -05:00

11 lines
270 B
Ruby

class CreateHeadingContentBlocks < ActiveRecord::Migration
def change
create_table :budget_content_blocks do |t|
t.integer :heading_id, index: true, foreign_key: true
t.text :body
t.string :locale
t.timestamps null: false
end
end
end