Sha256: c66b49bf56ea30c0a7c30f56f130a12d757dbc2f77a20911203b6103e38e9fc3
Contents?: true
Size: 526 Bytes
Versions: 6
Compression:
Stored size: 526 Bytes
Contents
class CreatePages < ActiveRecord::Migration def self.up create_table :pages do |t| t.string :title t.string :nav_title t.string :path t.string :meta_title t.string :meta_description t.string :meta_keywords t.integer :position, :default => 999 t.boolean :accessible, :default => true t.boolean :visible, :default => true t.timestamps end end def self.down drop_table :pages end end
Version data entries
6 entries across 6 versions & 1 rubygems