main
parent
f91b6fa9e1
commit
2d2154ba75
@ -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