Sha256: fa52ef85d353355f48e799ec7483c5ec7cceba3a5757ce8881eb0a083a1b47fd
Contents?: true
Size: 318 Bytes
Versions: 127
Compression:
Stored size: 318 Bytes
Contents
class AddPageFields < ActiveRecord::Migration[5.2] 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
127 entries across 127 versions & 1 rubygems