Guest User

Untitled

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