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/20120321191228_change_data_...

13 lines
213 B

class ChangeDataImportTimestampDefaultMigration < Sequel::Migration
def up
alter_table(:data_imports) do
set_column_default :created_at, Sequel::CURRENT_TIMESTAMP
end
end
def down
end
end