Sha256: 75cd6bebe3ce5a94f3927574e6b783fc5a3c0f5136341e11694bd94b6215134a
Contents?: true
Size: 438 Bytes
Versions: 16
Compression:
Stored size: 438 Bytes
Contents
# frozen_string_literal: true # 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
16 entries across 16 versions & 1 rubygems