20160129111722_create_kanjai_template_parts.rb 329 Bytes
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