2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-19 18:58:19 +00:00
|
|
|
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
|