logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20160224223247_create_mentions.rb (270B)


  1. class CreateMentions < ActiveRecord::Migration[4.2]
  2. def change
  3. create_table :mentions do |t|
  4. t.integer :account_id
  5. t.integer :status_id
  6. t.timestamps null: false
  7. end
  8. add_index :mentions, [:account_id, :status_id], unique: true
  9. end
  10. end