2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreateVestalVersions < ActiveRecord::Migration[4.2]
|
2013-02-05 14:16:51 -05:00
|
|
|
def self.up
|
|
|
|
create_table :versions do |t|
|
2013-03-23 11:02:59 -04:00
|
|
|
t.belongs_to :versioned, polymorphic: true
|
|
|
|
t.belongs_to :user, polymorphic: true
|
2013-02-05 14:16:51 -05:00
|
|
|
t.string :user_name
|
|
|
|
t.text :modifications
|
|
|
|
t.integer :number
|
|
|
|
t.integer :reverted_from
|
|
|
|
t.string :tag
|
|
|
|
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
change_table :versions do |t|
|
|
|
|
t.index %i[versioned_id versioned_type]
|
|
|
|
t.index %i[user_id user_type]
|
|
|
|
t.index :user_name
|
|
|
|
t.index :number
|
|
|
|
t.index :tag
|
|
|
|
t.index :created_at
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :versions
|
|
|
|
end
|
|
|
|
end
|