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/20120924165043_assets.rb

14 lines
242 B

Sequel.migration do
up do
create_table :assets do
primary_key :id
Integer :user_id, :null => false, :index => true
String :public_url, :text => true
end
end
down do
drop_table :assets
end
end