summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-04 00:42:14 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-04 00:42:14 +0200
commit2dae0e18e09132c0db32c8646d8d11b30cfcb83f (patch)
treeb28e2b90fae53324750e82e47898ab815c0bb82e /spec
parent8d7aaf0e5501c472504467b9252dd5bde14a98c8 (diff)
downloadgitlab-ce-2dae0e18e09132c0db32c8646d8d11b30cfcb83f.tar.gz
web hooks scaffold started
Diffstat (limited to 'spec')
-rw-r--r--spec/models/user_spec.rb1
-rw-r--r--spec/models/web_hook_spec.rb11
2 files changed, 12 insertions, 0 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb
index 3a3ac7c9c80..a62e56cdd30 100644
--- a/spec/models/user_spec.rb
+++ b/spec/models/user_spec.rb
@@ -65,5 +65,6 @@ end
# linkedin :string(255) default(""), not null
# twitter :string(255) default(""), not null
# authentication_token :string(255)
+# dark_scheme :boolean default(FALSE), not null
#
diff --git a/spec/models/web_hook_spec.rb b/spec/models/web_hook_spec.rb
index e73e554adbb..309bfc0fd53 100644
--- a/spec/models/web_hook_spec.rb
+++ b/spec/models/web_hook_spec.rb
@@ -52,3 +52,14 @@ describe WebHook do
end
end
end
+# == Schema Information
+#
+# Table name: web_hooks
+#
+# id :integer not null, primary key
+# url :string(255)
+# project_id :integer
+# created_at :datetime
+# updated_at :datetime
+#
+