Sha256: a075a2a67e3c13c9b8de7ae875bfed335f86db63b480d39ba85c47f67c0fc10c
Contents?: true
Size: 369 Bytes
Versions: 4
Compression:
Stored size: 369 Bytes
Contents
class CreateManageableContentPageContents < ActiveRecord::Migration def change create_table :manageable_content_page_contents do |t| t.references :page t.string :key t.boolean :short, :default => false t.text :content t.timestamps end add_index :manageable_content_page_contents, [:page_id, :key], :unique => true end end
Version data entries
4 entries across 4 versions & 1 rubygems