Guest User

Untitled

a guest
Apr 27th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class CreateWords < ActiveRecord::Migration
  2. def self.up
  3. create_table :words do |t|
  4. t.column :tradename_id, :integer, :null => false
  5. t.column :term, :string
  6. end
  7. end
  8.  
  9. def self.down
  10. drop_table :words
  11. end
  12. end
Add Comment
Please, Sign In to add comment