Sha256: 45fa6b275918b0aa7ad428459799b039a3b06ff0ba99c239fa62ab0525c274a3
Contents?: true
Size: 613 Bytes
Versions: 27
Compression:
Stored size: 613 Bytes
Contents
class CreateCoalescingPandaTerms < CoalescingPanda::MiscHelper::MigrationClass def change create_table :coalescing_panda_terms do |t| t.belongs_to :coalescing_panda_lti_account, null: false t.string :name t.string :code t.string :sis_id t.string :canvas_term_id, null: false t.datetime :start_at t.datetime :end_at t.string :workflow_state t.timestamps end add_index :coalescing_panda_terms, [:canvas_term_id, :coalescing_panda_lti_account_id], name: :index_terms_account, unique: true add_index :coalescing_panda_terms, :sis_id end end
Version data entries
27 entries across 27 versions & 1 rubygems