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/20120719112045_layers_maps.rb

16 lines
246 B

class LayersMapsMigration < Sequel::Migration
def up
create_table :layers_maps do
primary_key :id
foreign_key :layer_id, :layers
foreign_key :map_id, :maps
end
end
def down
drop_table :layers_maps
end
end