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

Reannotated

parent 283bf806
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -2,8 +2,8 @@
#
# Table name: protected_branches
#
# id :integer not null, primary key
# project_id :integer not null
# id :integer(4) not null, primary key
# project_id :integer(4) not null
# name :string(255) not null
# created_at :datetime not null
# updated_at :datetime not null
Loading
Loading
Loading
Loading
@@ -18,13 +18,13 @@ end
#
# Table name: snippets
#
# id :integer not null, primary key
# id :integer(4) not null, primary key
# title :string(255)
# content :text
# author_id :integer not null
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
# author_id :integer(4) not null
# project_id :integer(4) not null
# created_at :datetime not null
# updated_at :datetime not null
# file_name :string(255)
# expires_at :datetime
#
Loading
Loading
Loading
Loading
@@ -46,25 +46,29 @@ end
#
# Table name: users
#
# id :integer not null, primary key
# id :integer(4) not null, primary key
# email :string(255) default(""), not null
# encrypted_password :string(128) default(""), not null
# reset_password_token :string(255)
# reset_password_sent_at :datetime
# remember_created_at :datetime
# sign_in_count :integer default(0)
# sign_in_count :integer(4) default(0)
# current_sign_in_at :datetime
# last_sign_in_at :datetime
# current_sign_in_ip :string(255)
# last_sign_in_ip :string(255)
# created_at :datetime
# updated_at :datetime
# created_at :datetime not null
# updated_at :datetime not null
# name :string(255)
# admin :boolean default(FALSE), not null
# projects_limit :integer default(10)
# admin :boolean(1) default(FALSE), not null
# projects_limit :integer(4) default(10)
# skype :string(255) default(""), not null
# linkedin :string(255) default(""), not null
# twitter :string(255) default(""), not null
# authentication_token :string(255)
# dark_scheme :boolean default(FALSE), not null
# dark_scheme :boolean(1) default(FALSE), not null
# theme_id :integer(4) default(1), not null
# bio :string(255)
# blocked :boolean(1) default(FALSE), not null
#
Loading
Loading
@@ -20,11 +20,11 @@ end
#
# Table name: users_projects
#
# id :integer not null, primary key
# user_id :integer not null
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
# project_access :integer default(0), not null
# id :integer(4) not null, primary key
# user_id :integer(4) not null
# project_id :integer(4) not null
# created_at :datetime not null
# updated_at :datetime not null
# project_access :integer(4) default(0), not null
#
 
Loading
Loading
@@ -56,10 +56,10 @@ end
#
# Table name: web_hooks
#
# id :integer not null, primary key
# id :integer(4) not null, primary key
# url :string(255)
# project_id :integer
# created_at :datetime
# updated_at :datetime
# project_id :integer(4)
# created_at :datetime not null
# updated_at :datetime not null
#
 
Loading
Loading
@@ -16,16 +16,15 @@ describe Wiki do
end
# == Schema Information
#
# Table name: snippets
# Table name: wikis
#
# id :integer not null, primary key
# id :integer(4) not null, primary key
# title :string(255)
# content :text
# author_id :integer not null
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
# file_name :string(255)
# expires_at :datetime
# project_id :integer(4)
# created_at :datetime not null
# updated_at :datetime not null
# slug :string(255)
# user_id :integer(4)
#
 
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