Skip to content
Snippets Groups Projects
Commit 41e53eb9 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Annotated

parent dc33f71b
No related branches found
No related tags found
No related merge requests found
Showing
with 99 additions and 2 deletions
Loading
Loading
@@ -163,3 +163,4 @@ end
# action :integer
# author_id :integer
#
Loading
Loading
@@ -34,3 +34,4 @@ end
# created_at :datetime not null
# updated_at :datetime not null
#
Loading
Loading
@@ -49,3 +49,4 @@ end
# description :text
# milestone_id :integer
#
Loading
Loading
@@ -81,3 +81,4 @@ end
# identifier :string(255)
# project_id :integer
#
Loading
Loading
@@ -202,8 +202,9 @@ end
# closed :boolean default(FALSE), not null
# created_at :datetime not null
# updated_at :datetime not null
# st_commits :text(2147483647
# st_diffs :text(2147483647
# st_commits :text(4294967295
# st_diffs :text(4294967295
# merged :boolean default(FALSE), not null
# state :integer default(1), not null
#
Loading
Loading
@@ -39,3 +39,4 @@ end
# created_at :datetime not null
# updated_at :datetime not null
#
Loading
Loading
@@ -118,3 +118,4 @@ end
# attachment :string(255)
# line_code :string(255)
#
Loading
Loading
@@ -13,3 +13,4 @@ end
# updated_at :datetime not null
# type :string(255) default("ProjectHook")
#
Loading
Loading
@@ -29,3 +29,4 @@ end
# created_at :datetime not null
# updated_at :datetime not null
#
Loading
Loading
@@ -63,3 +63,4 @@ end
# file_name :string(255)
# expires_at :datetime
#
Loading
Loading
@@ -21,3 +21,4 @@ end
# updated_at :datetime not null
# type :string(255) default("ProjectHook")
#
Loading
Loading
@@ -113,3 +113,4 @@ end
# extern_uid :string(255)
# provider :string(255)
#
Loading
Loading
@@ -102,3 +102,4 @@ end
# updated_at :datetime not null
# project_access :integer default(0), not null
#
Loading
Loading
@@ -34,3 +34,4 @@ end
# updated_at :datetime not null
# type :string(255) default("ProjectHook")
#
Loading
Loading
@@ -46,3 +46,4 @@ end
# slug :string(255)
# user_id :integer
#
# == Schema Information
#
# Table name: events
#
# id :integer not null, primary key
# target_type :string(255)
# target_id :integer
# title :string(255)
# data :text
# project_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# action :integer
# author_id :integer
#
require 'spec_helper'
 
describe Event do
Loading
Loading
# == Schema Information
#
# Table name: issues
#
# id :integer not null, primary key
# title :string(255)
# assignee_id :integer
# author_id :integer
# project_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# closed :boolean default(FALSE), not null
# position :integer default(0)
# branch_name :string(255)
# description :text
# milestone_id :integer
#
require 'spec_helper'
 
describe Issue do
Loading
Loading
# == Schema Information
#
# Table name: keys
#
# id :integer not null, primary key
# user_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# key :text
# title :string(255)
# identifier :string(255)
# project_id :integer
#
require 'spec_helper'
 
describe Key do
Loading
Loading
# == Schema Information
#
# Table name: merge_requests
#
# id :integer not null, primary key
# target_branch :string(255) not null
# source_branch :string(255) not null
# project_id :integer not null
# author_id :integer
# assignee_id :integer
# title :string(255)
# closed :boolean default(FALSE), not null
# created_at :datetime not null
# updated_at :datetime not null
# st_commits :text(4294967295
# st_diffs :text(4294967295
# merged :boolean default(FALSE), not null
# state :integer default(1), not null
#
require 'spec_helper'
 
describe MergeRequest do
Loading
Loading
# == Schema Information
#
# Table name: milestones
#
# id :integer not null, primary key
# title :string(255) not null
# project_id :integer not null
# description :text
# due_date :date
# closed :boolean default(FALSE), not null
# created_at :datetime not null
# updated_at :datetime not null
#
require 'spec_helper'
 
describe Milestone do
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment