Guest User

Untitled

a guest
Jul 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Countries < ActiveRecord::Migration
  2. def self.up
  3. create_table :countries do |t|
  4. t.string :name, :null => false
  5. t.string :short, :null => false
  6.  
  7. t.timestamps
  8. end
  9. add_index :countries, :name, :unique => true
  10. end
  11.  
  12. def self.down
  13. drop_table :countries
  14. end
  15. end
Add Comment
Please, Sign In to add comment