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/20110308151555_add_admin_fl...

10 lines
163 B

class AddAdminFlagToUsersMigration < Sequel::Migration
def up
add_column :users, :admin, :boolean
end
def down
drop_column :users, :admin
end
end