th-downstream
parent
11e2159859
commit
09a477c782
@ -0,0 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Mastodon
|
||||
class Error < StandardError; end
|
||||
class NotPermitted < Error; end
|
||||
end
|
@ -0,0 +1,5 @@
|
||||
class AddLockedToAccounts < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
add_column :accounts, :locked, :boolean, null: false, default: false
|
||||
end
|
||||
end
|
Loading…
Reference in new issue