tiss2go/db/migrate/20200525132942_create_favorite_theses.rb

14 lines
329 B
Ruby

class CreateFavoriteTheses < ActiveRecord::Migration[6.0]
def change
create_table :favorite_theses, primary_key: [:id, :user_id] do |t|
t.integer :id, null: false
t.belongs_to :user
t.string :title
t.string :personal_annotation
t.string :personal_keyword
t.timestamps
end
end
end