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/20111012094815_add_quota_to...

12 lines
202 B

class AddQuotaToUserMigration < Sequel::Migration
def up
add_column :users, :quota_in_bytes, :bigint, :default => 104857600
end
def down
drop_column :users, :quota_in_bytes
end
end