mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
12 lines
309 B
Ruby
12 lines
309 B
Ruby
|
class CreateAccountAliases < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :account_aliases do |t|
|
||
|
t.belongs_to :account, foreign_key: { on_delete: :cascade }
|
||
|
t.string :acct, null: false, default: ''
|
||
|
t.string :uri, null: false, default: ''
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|