new migration for error code reporting

1.0
Andrew W Hill 13 years ago
parent 929225facc
commit f67c122f56

@ -0,0 +1,13 @@
class AddNewErrorCodeColumnToDataImportMigration < Sequel::Migration
def up
create_table :data_imports do
primary_key :id
end
end
def down
drop_table :data_imports
end
end
Loading…
Cancel
Save