Advertisement
twinfacer

migr

May 5th, 2014
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.37 KB | None | 0 0
  1. class CreateNavigationItems < ActiveRecord::Migration
  2.   def change
  3.     create_table :navigation_items do |t|
  4.       t.references :site, index: true, null: false
  5.       t.string :title, null: false
  6.       t.string :link
  7.       t.string :ancestry
  8.       t.integer :position, null: false, default: 0
  9.       t.datetime :deleted_at
  10.      
  11.       t.timestamps
  12.     end
  13.   end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement