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/20110322070116_add_schema_t...

12 lines
204 B

class AddSchemaToTablesMigration < Sequel::Migration
def up
add_column :user_tables, :stored_schema, 'character varying[]'
end
def down
drop_column :user_tables, :stored_schema
end
end