class CreateKanjaiTemplateParts < ActiveRecord::Migration
def change
create_table :kanjai_template_parts do |t|
t.references :page_template
t.string :name
t.string :type
t.string :code
t.text :source
t.text :elements
t.timestamps null: false
end
end
end