diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-11-06 14:38:28 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-11-06 14:38:28 +0100 |
commit | 0ae7d8427394d5f98fb2bd78eaae9bf848831186 (patch) | |
tree | e15a6321eedcbf9a2ae55ce24e7d8960f233b5ef /db/migrate | |
parent | 00793a86bc52e4cb37318e42ea4ceb37a896c727 (diff) | |
parent | 42d9ca21de298e1d51b87723745f2b17e4169894 (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - `package.json`
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20191031163205_change_list_account_follow_nullable.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20191031163205_change_list_account_follow_nullable.rb b/db/migrate/20191031163205_change_list_account_follow_nullable.rb new file mode 100644 index 000000000..ff8911546 --- /dev/null +++ b/db/migrate/20191031163205_change_list_account_follow_nullable.rb @@ -0,0 +1,5 @@ +class ChangeListAccountFollowNullable < ActiveRecord::Migration[5.1] + def change + change_column_null :list_accounts, :follow_id, true + end +end |