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/20110412143448_add_database...

12 lines
199 B

4 years ago
class AddDatabaseNameToUserTablesMigration < Sequel::Migration
def up
add_column :user_tables, :database_name, String
end
def down
drop_column :user_tables, :database_name
end
end