Sha256: f67826047117adf2bbab46e847af61b52c905d6460a4fd951a0646e9accffe0c
Contents?: true
Size: 762 Bytes
Versions: 13
Compression:
Stored size: 762 Bytes
Contents
# This migration comes from hubstats (originally 20140604130504) 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
13 entries across 13 versions & 1 rubygems