From 14c4a33cd9bfc1212cb362897272e5ea7d1529e5 Mon Sep 17 00:00:00 2001 From: Akihiko Odaki Date: Tue, 12 Dec 2017 12:11:17 +0900 Subject: Change account_id non-nullable in lists (#5979) --- .../20171201000000_change_account_id_nonnullable_in_lists.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb (limited to 'db/migrate') diff --git a/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb b/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb new file mode 100644 index 000000000..120f74402 --- /dev/null +++ b/db/migrate/20171201000000_change_account_id_nonnullable_in_lists.rb @@ -0,0 +1,7 @@ +require Rails.root.join('lib', 'mastodon', 'migration_helpers') + +class ChangeAccountIdNonnullableInLists < ActiveRecord::Migration[5.1] + def change + change_column_null :lists, :account_id, false + end +end -- cgit