diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-30 19:42:33 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-03-30 19:42:33 +0200 |
commit | e8875c6046615778c7ae6f1fc0c4a195fb5d3a03 (patch) | |
tree | f3323758f605bbf792fd422d04d86636e64f0345 /db/migrate | |
parent | 03fb6c16ecc3c36104185507d601af87edecc655 (diff) |
Import feature for following/blocking lists (addresses #62, #177, #201, #454)
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20170330163835_create_imports.rb | 11 | ||||
-rw-r--r-- | db/migrate/20170330164118_add_attachment_data_to_imports.rb | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/db/migrate/20170330163835_create_imports.rb b/db/migrate/20170330163835_create_imports.rb new file mode 100644 index 000000000..d6f74823d --- /dev/null +++ b/db/migrate/20170330163835_create_imports.rb @@ -0,0 +1,11 @@ +class CreateImports < ActiveRecord::Migration[5.0] + def change + create_table :imports do |t| + t.integer :account_id, null: false + t.integer :type, null: false + t.boolean :approved + + t.timestamps + end + end +end diff --git a/db/migrate/20170330164118_add_attachment_data_to_imports.rb b/db/migrate/20170330164118_add_attachment_data_to_imports.rb new file mode 100644 index 000000000..4850b0663 --- /dev/null +++ b/db/migrate/20170330164118_add_attachment_data_to_imports.rb @@ -0,0 +1,11 @@ +class AddAttachmentDataToImports < ActiveRecord::Migration + def self.up + change_table :imports do |t| + t.attachment :data + end + end + + def self.down + remove_attachment :imports, :data + end +end |