diff options
author | Johan Sørensen <johan@johansorensen.com> | 2007-12-13 23:07:42 +0100 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2007-12-13 23:07:42 +0100 |
commit | a9ebd2bc58bb11a5fba462f82460fee83fd4426f (patch) | |
tree | d99045110e53fb2d9b6e28c20b07f2f536a2b45b /db/schema.rb | |
parent | 3a6a9d6525c3bc57babc0a858f1fe4db0b5714f7 (diff) | |
download | gitorious-mainline-outdated-a9ebd2bc58bb11a5fba462f82460fee83fd4426f.zip gitorious-mainline-outdated-a9ebd2bc58bb11a5fba462f82460fee83fd4426f.tar.gz gitorious-mainline-outdated-a9ebd2bc58bb11a5fba462f82460fee83fd4426f.tar.bz2 |
rename Permission to Committership
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/db/schema.rb b/db/schema.rb index a0e9891..d5ae0d2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,9 +9,9 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 13) do +ActiveRecord::Schema.define(:version => 14) do - create_table "permissions", :force => true do |t| + create_table "committerships", :force => true do |t| t.integer "user_id" t.integer "repository_id" t.integer "kind", :default => 2 @@ -19,8 +19,8 @@ ActiveRecord::Schema.define(:version => 13) do t.datetime "updated_at" end - add_index "permissions", ["user_id"], :name => "index_permissions_on_user_id" - add_index "permissions", ["repository_id"], :name => "index_permissions_on_repository_id" + add_index "committerships", ["user_id"], :name => "index_permissions_on_user_id" + add_index "committerships", ["repository_id"], :name => "index_permissions_on_repository_id" create_table "projects", :force => true do |t| t.string "title" |