Class: CreateCourses

Inherits:
Object
  • Object
show all
Defined in:
lib/canvas_sync/generators/templates/migrations/create_courses.rb

Overview

<%= autogenerated_migration_warning %>

Instance Method Summary collapse

Instance Method Details

#changeObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/canvas_sync/generators/templates/migrations/create_courses.rb', line 4

def change
  create_table :courses do |t|
    t.bigint :canvas_id, null: false
    t.string :sis_id
    t.string :course_code
    t.string :name
    t.string :workflow_state
    t.integer :canvas_account_id
    t.integer :canvas_term_id
    t.datetime :start_at
    t.datetime :end_at
    t.bigint :grading_standard_id

    t.timestamps
  end

  add_index :courses, :canvas_id, unique: true
end