Advertisement
twinfacer

pages migration

May 13th, 2014
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.30 KB | None | 0 0
  1. class CreateSitePages < ActiveRecord::Migration
  2.   def change
  3.     create_table :site_pages do |t|
  4.       t.references :site, null: false, index: true
  5.       t.string :name, null: false
  6.       t.string :code, null: false
  7.       t.string :url, null: false
  8.      
  9.       t.timestamps
  10.     end
  11.   end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement