Sha256: bea5d53ca105133534628a77837ad3c2599b568a6bdbef606971cd813fdfd9a2

Contents?: true

Size: 807 Bytes

Versions: 16

Compression:

Stored size: 807 Bytes

Contents

# frozen_string_literal: true

# This migration creates the citations table for works_cited
class CreateWorksCitedCitations < ActiveRecord::Migration[6.1]
  # rubocop:disable Metrics/AbcSize
  def change
    create_table :works_cited_citations do |t|
      t.string :citation_type
      t.string :media
      t.string :title
      t.string :container_title
      t.string :publisher
      t.string :city
      t.string :edition
      t.string :volume
      t.string :number
      t.string :series
      t.string :year
      t.string :pages
      t.string :url
      t.string :online_database
      t.string :doi
      t.timestamp :published_at
      t.timestamp :accessed_at
      t.references :record, polymorphic: true, null: false

      t.timestamps
    end
  end
  # rubocop:enable Metrics/AbcSize
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
works_cited-0.1.16 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.15 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.14 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.13 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.11 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.10 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.9 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.8 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.7 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.6 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.5 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.4 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.3 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.2 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.1 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb
works_cited-0.1.0 db/migrate/20210830165845_create_works_cited_citations.works_cited.rb