Sha256: cd6e648c46562cd7248d5d69bffcf5f101cb6caefc6e0cf6eca3e4e34f95cd3c
Contents?: true
Size: 507 Bytes
Versions: 14
Compression:
Stored size: 507 Bytes
Contents
# frozen_string_literal: true # This migration comes from works_cited (originally 20210831013102) # Create Contributors class CreateWorksCitedContributors < ActiveRecord::Migration[6.1] def change create_table :works_cited_contributors do |t| t.references :works_cited_citation, null: false, foreign_key: true t.string :contributor_role t.string :first t.string :middle t.string :last t.string :suffix t.string :handle t.timestamps end end end
Version data entries
14 entries across 14 versions & 1 rubygems