cartodb/db/migrate/20110412143448_add_database_name_to_user_tables.rb

12 lines
199 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
class AddDatabaseNameToUserTablesMigration < Sequel::Migration
def up
add_column :user_tables, :database_name, String
end
def down
drop_column :user_tables, :database_name
end
end