Guest User

Untitled

a guest
May 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class CreateApps < ActiveRecord::Migration
  2. def self.up
  3. create_table :apps do |t|
  4. t.string :name
  5. t.integer :port
  6. t.timestamps
  7. end
  8. end
  9.  
  10. def self.down
  11. drop_table :apps
  12. end
  13. end
Add Comment
Please, Sign In to add comment