aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZakaria BOUZIANE2015-02-26 14:58:08 +0100
committerZakaria BOUZIANE2015-02-26 14:58:08 +0100
commit1f5fe2715c6dd51fa04244085faa6027528a9fe5 (patch)
treeff6abfb6b29aa70811ee9d05c586f9a3670c5a5c
parent6c799be447a241f0eb232fc4cea3405612acd4e8 (diff)
downloadchouette-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.rb5
-rw-r--r--db/migrate/20150226083920_drop_table_export_log_messages.rb5
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