Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2017-08-28 02:21:25 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2017-09-18 04:21:41 +0300
commit028199a6f352b9b20bd72b3f514241cb0fcd1e6b (patch)
tree2028ea502d0a68f17a7f6cbbf6a6f1b8f29c9bf2 /db
parent4c967903fed684dacb9d14ecbfc6f06158e3df5c (diff)
Remove "string" column from "ppid" table
This was added by accident in 4e18f3849dcc5d36bda93e68b597b869735d5517. closes #7598
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20170827231800_remove_string_column_from_ppid.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20170827231800_remove_string_column_from_ppid.rb b/db/migrate/20170827231800_remove_string_column_from_ppid.rb
new file mode 100644
index 000000000..019fda827
--- /dev/null
+++ b/db/migrate/20170827231800_remove_string_column_from_ppid.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+class RemoveStringColumnFromPpid < ActiveRecord::Migration[5.1]
+ def change
+ remove_column :ppid, :string, :string, limit: 32
+ end
+end