logo

mastofe

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

20170924022025_ids_to_bigints2.rb (191B)


  1. class IdsToBigints2 < ActiveRecord::Migration[5.1]
  2. def up
  3. change_column :statuses_tags, :tag_id, :bigint
  4. end
  5. def down
  6. change_column :statuses_tags, :tag_id, :integer
  7. end
  8. end