Added a migration for the TOS agreement boolean field

This commit is contained in:
Gnat
2012-12-03 03:55:25 +00:00
parent 0b47c60952
commit f2bb4ecb58

View File

@@ -0,0 +1,5 @@
class AddTosAgreementToUsers < ActiveRecord::Migration
def change
add_column :users, :tos_agreement, :boolean
end
end