diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-07 09:31:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-07 09:31:07 +0200 |
commit | 42cd363542abf0a12a4e877b3ad26024f24577ef (patch) | |
tree | b9539c370516cf0dcf1cc64b4975a1b6e84b9e56 /db/migrate | |
parent | 0f0cc3f2eba9c8a701d735cd54206629eeea4ddb (diff) |
Bot nameplates (#7391)
* Store actor type in database * Add bot nameplate to web UI, add setting to preferences, API, AP Fix #7365 * Fix code style issues
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20180506221944_add_actor_type_to_accounts.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20180506221944_add_actor_type_to_accounts.rb b/db/migrate/20180506221944_add_actor_type_to_accounts.rb new file mode 100644 index 000000000..7cfed640f --- /dev/null +++ b/db/migrate/20180506221944_add_actor_type_to_accounts.rb @@ -0,0 +1,5 @@ +class AddActorTypeToAccounts < ActiveRecord::Migration[5.2] + def change + add_column :accounts, :actor_type, :string + end +end |