Sha256: 797ff953671af87b0d8bef0f0d59675248bd1d418831a1e07bcc3b976402fb42

Contents?: true

Size: 1.22 KB

Versions: 6

Compression:

Stored size: 1.22 KB

Contents

class AddDcndlSchema < ActiveRecord::Migration[5.2]
  def self.up
    add_column :manifestations, :title_alternative_transcription, :text
    add_column :agents, :full_name_alternative_transcription, :text
    add_column :manifestations, :description, :text
    add_column :manifestations, :abstract, :text
    add_column :manifestations, :available_at, :timestamp
    add_column :manifestations, :valid_until, :timestamp
    add_column :manifestations, :date_submitted, :timestamp
    add_column :manifestations, :date_accepted, :timestamp
    add_column :manifestations, :date_captured, :timestamp
    rename_column :manifestations, :copyright_date, :date_copyrighted
  end

  def self.down
    remove_column :manifestations, :title_alternative_transcription
    remove_column :agents, :full_name_alternative_transcription
    remove_column :manifestations, :description
    remove_column :manifestations, :abstract
    remove_column :manifestations, :available_at
    remove_column :manifestations, :valid_until
    remove_column :manifestations, :date_submitted
    remove_column :manifestations, :date_accepted
    remove_column :manifestations, :date_captured
    rename_column :manifestations, :date_copyrighted, :copyright_date
  end
end

Version data entries

6 entries across 6 versions & 6 rubygems

Version Path
enju_inventory-0.4.0.rc.1 spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb
enju_ndl-0.4.0.rc.1 spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb
enju_circulation-0.4.0.rc.1 spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb
enju_manifestation_viewer-0.4.0.rc.1 spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb
enju_subject-0.4.0.rc.1 spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb
enju_event-0.4.0.rc.1 spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb