1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20160221003621_create_follows.rb

13 lines
309 B
Ruby
Raw Normal View History

class CreateFollows < ActiveRecord::Migration[4.2]
2016-02-22 07:00:20 -08:00
def change
create_table :follows do |t|
t.integer :account_id, null: false
t.integer :target_account_id, null: false
t.timestamps null: false
end
add_index :follows, [:account_id, :target_account_id], unique: true
end
end