You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20120213183707_add_private_...

10 lines
221 B

class AddPrivateTablesToUserMigration < Sequel::Migration
def up
add_column :users, :private_tables_enabled, :boolean, :default => false
end
def down
drop_column :users, :private_tables_enabled
end
end