Advertisement
Guest User

Untitled

a guest
May 4th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class CreateAdminUsersSummaryActivities < ActiveRecord::Migration
  2. def change
  3. create_table :admin_users_summary_activities do |t|
  4. t.column :user_id, :integer, null: false
  5. t.column :activity, :integer, default: 0
  6. t.column :date, :date, null: false
  7. t.timestamps
  8. end
  9. end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement