9 changed files with 27 additions and 3 deletions
@ -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