diff options
| author | Zakaria BOUZIANE | 2015-02-26 14:58:08 +0100 | 
|---|---|---|
| committer | Zakaria BOUZIANE | 2015-02-26 14:58:08 +0100 | 
| commit | 1f5fe2715c6dd51fa04244085faa6027528a9fe5 (patch) | |
| tree | ff6abfb6b29aa70811ee9d05c586f9a3670c5a5c | |
| parent | 6c799be447a241f0eb232fc4cea3405612acd4e8 (diff) | |
| download | chouette-core-1f5fe2715c6dd51fa04244085faa6027528a9fe5.tar.bz2 | |
Instable state (last): postgresql_adapter.rb: undefined method table_name for Export:Class
| -rw-r--r-- | db/migrate/20150226083820_drop_table_exports.rb | 5 | ||||
| -rw-r--r-- | db/migrate/20150226083920_drop_table_export_log_messages.rb | 5 | 
2 files changed, 10 insertions, 0 deletions
| diff --git a/db/migrate/20150226083820_drop_table_exports.rb b/db/migrate/20150226083820_drop_table_exports.rb new file mode 100644 index 000000000..f5b31cf34 --- /dev/null +++ b/db/migrate/20150226083820_drop_table_exports.rb @@ -0,0 +1,5 @@ +class DropTableExports < ActiveRecord::Migration +  def change +    drop_table :exports +  end +end diff --git a/db/migrate/20150226083920_drop_table_export_log_messages.rb b/db/migrate/20150226083920_drop_table_export_log_messages.rb new file mode 100644 index 000000000..fa9287b95 --- /dev/null +++ b/db/migrate/20150226083920_drop_table_export_log_messages.rb @@ -0,0 +1,5 @@ +class DropTableExportLogMessages < ActiveRecord::Migration +  def change +    drop_table :export_log_messages +  end +end | 
