Sha256: 04f8fd1e0fc4e7136809d05bad950626bee7b54a37987c10a7e9b84fce25c252
Contents?: true
Size: 697 Bytes
Versions: 56
Compression:
Stored size: 697 Bytes
Contents
class CreateHubstatsComments < ActiveRecord::Migration def change create_table :hubstats_comments do |t| t.integer :id t.string :kind t.belongs_to :user t.belongs_to :pull_request t.belongs_to :repo t.datetime :created_at t.datetime :updated_at t.string :body t.string :diff_hunk t.integer :path t.integer :position t.string :original_position t.string :line t.string :commit_id t.string :original_commit_id t.string :html_url t.string :url t.string :pull_request_url end add_index :hubstats_comments, :user_id add_index :hubstats_comments, :pull_request_id end end
Version data entries
56 entries across 56 versions & 1 rubygems