diff options
Diffstat (limited to 'db/migrate/20120424062951_add_hotdeskable_to_sip_account.rb')
-rw-r--r-- | db/migrate/20120424062951_add_hotdeskable_to_sip_account.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20120424062951_add_hotdeskable_to_sip_account.rb b/db/migrate/20120424062951_add_hotdeskable_to_sip_account.rb new file mode 100644 index 0000000..3d917d6 --- /dev/null +++ b/db/migrate/20120424062951_add_hotdeskable_to_sip_account.rb @@ -0,0 +1,6 @@ +class AddHotdeskableToSipAccount < ActiveRecord::Migration + def change + add_column :sip_accounts, :hotdeskable, :boolean + + end +end |