Sha256: 885c3cb20238b49e22329f80b0ddcb4a53d60c16b540e7d6fd9f47b1c4b6e97e
Contents?: true
Size: 313 Bytes
Versions: 92
Compression:
Stored size: 313 Bytes
Contents
class AddPageFields < ActiveRecord::Migration def self.up create_table :page_fields do |t| t.integer :page_id t.string :name t.string :content end add_index :page_fields, :page_id end def self.down remove_index :page_fields, :page_id drop_table :page_fields end end
Version data entries
92 entries across 92 versions & 4 rubygems