Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 25
- Log:
Configured for temporary /rails/collaboa location on Alpha. Changed
database schema so 'completed' flag in 'milestones' table is an integer
rather than a boolean because there are comparisons with zero in a few
places in the code, but PostgreSQL strongly types booleans and will not
automatically or cast it or allow it to be explicitly cast. It was
simpler to change the database type to match the code.Added a local copy of RedCloth since it didn't appear in the right
place (this appears in 'vendor'). Updated the 'syntax' library to use
more explicit 'require' paths - some of the files looked like they were
expecting 'require' to work from the directory in which the file itself
resided, but Ruby/Rails, at least on Alpha, treats them as coming from
the application root at all times.As housekeeping, deleted spurious log files.
- Author:
- adh
- Date:
- Mon Jul 24 22:03:51 +0100 2006
- Size:
- 3045 Bytes
1 | # This file is autogenerated. Instead of editing this file, please use the |
2 | # migrations feature of ActiveRecord to incrementally modify your database, and |
3 | # then regenerate this schema definition. |
4 | |
5 | ActiveRecord::Schema.define(:version => 4) do |
6 | |
7 | create_table "changes", :force => true do |t| |
8 | t.column "changeset_id", :integer |
9 | t.column "revision", :integer, :default => 0, :null => false |
10 | t.column "name", :string, :limit => 2, :default => "", :null => false |
11 | t.column "path", :text, :default => "", :null => false |
12 | t.column "from_path", :text |
13 | t.column "from_revision", :integer |
14 | end |
15 | |
16 | create_table "changesets", :force => true do |t| |
17 | t.column "revision", :integer |
18 | t.column "author", :string, :limit => 50 |
19 | t.column "log", :text |
20 | t.column "created_at", :datetime |
21 | t.column "revised_at", :datetime |
22 | end |
23 | |
24 | create_table "milestones", :force => true do |t| |
25 | t.column "name", :string, :limit => 75 |
26 | t.column "info", :text |
27 | t.column "due", :date |
28 | t.column "completed", :integer, :default => 0 |
29 | t.column "created_at", :datetime |
30 | end |
31 | |
32 | create_table "parts", :force => true do |t| |
33 | t.column "name", :string, :limit => 50 |
34 | end |
35 | |
36 | create_table "releases", :force => true do |t| |
37 | t.column "name", :string, :limit => 25 |
38 | end |
39 | |
40 | create_table "sessions", :force => true do |t| |
41 | t.column "sessid", :string, :limit => 32 |
42 | t.column "data", :text |
43 | end |
44 | |
45 | create_table "severities", :force => true do |t| |
46 | t.column "position", :integer |
47 | t.column "name", :string, :limit => 50 |
48 | end |
49 | |
50 | create_table "status", :force => true do |t| |
51 | t.column "name", :string, :limit => 25 |
52 | end |
53 | |
54 | create_table "ticket_changes", :force => true do |t| |
55 | t.column "ticket_id", :integer |
56 | t.column "author", :string, :limit => 75 |
57 | t.column "comment", :text |
58 | t.column "created_at", :datetime |
59 | t.column "log", :text |
60 | t.column "attachment", :string |
61 | t.column "content_type", :string, :limit => 100 |
62 | t.column "attachment_fsname", :string |
63 | end |
64 | |
65 | create_table "tickets", :force => true do |t| |
66 | t.column "milestone_id", :integer, :default => 0 |
67 | t.column "part_id", :integer, :default => 0 |
68 | t.column "severity_id", :integer, :default => 0, :null => false |
69 | t.column "release_id", :integer |
70 | t.column "status_id", :integer, :default => 1, :null => false |
71 | t.column "author", :string, :limit => 75 |
72 | t.column "summary", :string |
73 | t.column "content", :text |
74 | t.column "author_host", :string, :limit => 100 |
75 | t.column "created_at", :datetime |
76 | end |
77 | |
78 | create_table "users", :force => true do |t| |
79 | t.column "login", :string, :limit => 80 |
80 | t.column "password", :string, :limit => 40 |
81 | t.column "created_at", :datetime |
82 | t.column "view_changesets", :boolean, :default => true |
83 | t.column "view_code", :boolean, :default => true |
84 | t.column "view_tickets", :boolean, :default => true |
85 | t.column "create_tickets", :boolean, :default => true |
86 | t.column "admin", :boolean, :default => false |
87 | t.column "view_milestones", :boolean, :default => true |
88 | end |
89 | |
90 | end |