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/20130331112949_visualizatio...

17 lines
418 B

class VisualizationsMigration < Sequel::Migration
def up
create_table :visualizations do
String :id, null: false, primary_key: true
String :name, text: true
String :description, text: true
String :map_id, index: true
String :type
end
end #up
def down
drop_table :visualizations
end #down
end # VisualizationsMigration