about summary refs log tree commit diff
path: root/db/migrate/20190915194355_create_account_aliases.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190915194355_create_account_aliases.rb')
-rw-r--r--db/migrate/20190915194355_create_account_aliases.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20190915194355_create_account_aliases.rb b/db/migrate/20190915194355_create_account_aliases.rb
new file mode 100644
index 000000000..32ce031d9
--- /dev/null
+++ b/db/migrate/20190915194355_create_account_aliases.rb
@@ -0,0 +1,11 @@
+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