Revision
6066 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 13 11:13:40 2024 UTC
(7 months, 2 weeks ago)
by
dvl
Diff to
previous 6061
ri.txt: fix broken packages triggers
After INSERT, invoke package_notifications_insert, not after UPDATE
After DELETE, invoked package_notifications_delete, not after UPDATE
Seems like repeated copy/paste/fail to correctly amend.
Revision
6053 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 11 18:25:05 2024 UTC
(12 months, 3 weeks ago)
by
dvl
Diff to
previous 6051
Add insert into reports for new package notiication report
change public.report_log_package_notifications to id, not serial
postgres, not postgress.
Revision
5946 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 12 22:54:46 2023 UTC
(15 months, 3 weeks ago)
by
dan
Diff to
previous 5941
When done populating the packages table, clear out the pacakges_raw table.
I suspect we had lingering data in there. This was messing up the results.
We'd have a version, and no record of ever importing that tree.
Revision
5910 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 30 15:01:34 2023 UTC
(18 months ago)
by
dan
Diff to
previous 5907
Add new function: DoneProcessingCommit()
It is not invoked anywhere - I suspect that would
be somewhere inside the commit inserting/adding
code.
Revision
5888 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 28 14:54:59 2022 UTC
(2 years, 3 months ago)
by
dan
Diff to
previous 5882
Rename GetCategoryPortFromLatestLink to FUNCTION GetCategoryPortFromPackageName
because latestlink is no longer used by Ports.
Revision
5869 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 11 13:33:36 2022 UTC
(2 years, 3 months ago)
by
dan
Diff to
previous 5855
Split role creation out from permissions.sql into roles-users-groups.sql
This allows permissions to be re-run at any time, for example, after a view
changes.
Revision
5855 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 21 12:48:37 2022 UTC
(2 years, 6 months ago)
by
dan
Diff to
previous 5837
When clearing cache for a port, consider all categories
re https://github.com/FreshPorts/freshports/issues/373
A port has a primary category. e.g. x11/bemenu
However, this port is also listed in the wayland category,
which is a virtual category. This is known as a secondary
category. Secondary categories are always vritual.
You can't browse to wayland/bemenu - but you can see bemenu
listed at https://www.freshports.org/wayland/
Therefore, we must flush that page from cache when that port
is updated.
The solution: insert both of these pairs into the cache_clearing_ports
table:
* x11,bemenu
* wayland,bemenu
The fp-listen daemon, which runs on the webserver nodes, will always clear
the category page in addition to the port page.
It will also clear the now non-existent wayland/bemenu page - no harm done
there. Should the display of a port on a virtual page be implemented one
day, this solution will properly clear that cache too.
Revision
5830 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 19 13:03:32 2022 UTC
(2 years, 8 months ago)
by
dan
Diff to
previous 5826
Exclude deleted ports on package name search
Use ports_active not ports
Example: otrs has www and devel (deleted).
If entered into the search box on the front page, you'd be taken to the
search page where only the non-deleted port would be found. Better to take
then directly to the active port, as intended.
Revision
5807 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 2 18:02:53 2021 UTC
(3 years, 7 months ago)
by
dan
Diff to
previous 5799
Remove NOT EXISTS (SELECT port_id
FROM cache_clearing_ports
WHERE port_id = PD.port_id_dependent_upon)
from the trigger. It's seems extraneous
Revision
5636 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 1 19:12:34 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5635
This is the first attempt at converting expression which one ran on a single column
into one which runs on rows.
Previously, it ran on array_to_json(regexp_match(ports.pkg_plist, 'lib/[[:alpha:]]*?\.so'))
But now those values are speard across several rows in the generate_plist
table.
This first attempt is wrong.
Revision
5596 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 1 01:56:10 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5595
When inserting into the cache_clearing_ports table, which now has a unique
index on port_id, detect a conflict on that index and do nothing if it
occurs.
While here, try to not NOTIFY if we don't have to.
Revision
5595 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 1 01:17:18 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5542
Use -- instead of # for comments
Remove AddNewABIToPackagesLastChecked() which does not compile against the packages_last_checked
table which does not contain a column named branch_id
Revision
5536 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 13 17:50:46 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5535
Add in
* GetQuarterlyBranchName
* NormalizeBranch
* DenormalizeBranchName
* AddNewABIToPackagesLastChecked
Which where someone how only over here.
Revision
5472 -
Directory Listing
-
[select for diffs]
Modified
Sun Aug 2 22:06:33 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5383
If there is nothing to save in port_dependencies_delete_clear_cache(),
don't save it. It avoids this situation:
freshports.devgit=# delete from element where id = 1058393;
ERROR: null value in column "category" violates not-null constraint
DETAIL: Failing row contains (19934459, 59842, null, null, 2020-08-02 21:50:23.967785).
CONTEXT: SQL statement "INSERT INTO cache_clearing_ports (port_id, category, port)
VALUES (OLD.port_id, l_category, l_port)"
PL/pgSQL function port_dependencies_delete_clear_cache() line 19 at SQL statement
SQL statement "delete from element
where parent_id=old.id"
PL/pgSQL function on_delete_remove_children() line 4 at SQL statement
SQL statement "delete from element
where parent_id=old.id"
PL/pgSQL function on_delete_remove_children() line 4 at SQL statement
SQL statement "delete from element
where parent_id=old.id"
PL/pgSQL function on_delete_remove_children() line 4 at SQL statement
freshports.devgit=# rollback;
Revision
5327 -
Directory Listing
-
[select for diffs]
Modified
Sun May 3 15:25:08 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5322
Adjust PortPackages to also return processed_date
While here, return formatted dates, without seconds.
Create iso_date_seconds() to format that date.
Revision
5305 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 27 01:14:42 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5303
Change the update package_imports table to set newly added columns:
last_checked, repo_date, import_date, processed_date
Revision
5303 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 24 21:45:49 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5302
Rewrite PackagesLastCheckedSetRepoDate to clear processed_date & import_date
if the new repo_date is not the same as the incoming date.
If the dates are the same, no update occurs.
Returns the number of rows updated.
Revision
5293 -
Directory Listing
-
[select for diffs]
Modified
Tue Apr 21 13:57:28 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5292
Rename trigger and function ports_origin_insert to ports_origin_maintain
because it's run on both update and insert, not just insert.
Use IS DISTINCT FROM on the update.
Revision
5287 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 20 14:41:35 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5286
Whitespace for element_pathname_update
Change ports_origin_insert to pull port_origin first
Then do the UPDATE only if things have changed - no need to churn
Revision
5286 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 20 00:25:39 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5285
When copying data from packages_raw to packages, first set port_id and
abi_id
When comparing, also use P.port_id = PR.port_id
addReviewed by:
Revision
5285 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 20 00:24:40 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5284
keep the ports_origin table up to date
when package_imports is updated, note that in the packages_last_checked
table
a bunch of ' on ' to ' ON ' etc
Revision
5276 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 12 14:40:44 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5275
adding:
* NormalizeBranch - convert latest to head and quarterly to latest branch
* PackagesLastCheckedSetRepoDate(a_abi_name text, a_branch_name text, a_CheckedDate text)
Revision
5271 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 9 12:38:00 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5249
Add DeleteUser
Delete by user id as supplied by the code.
The initial intent was to delete by cookie, but that
value is on the client. Let's do this by id instead.
SECURITY DEFINER - means run this function as the user
which created. This means the www
user does not require write permission
on the users table.
Revision
5238 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 14 13:20:26 2019 UTC
(5 years, 4 months ago)
by
dan
Diff to
previous 5235
Fix CreatePort(text,text,text) by not using GetPort() with the SQL.
It seems to not be pulling in the correct value.
Revision
5233 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 12 14:52:54 2019 UTC
(5 years, 4 months ago)
by
dan
Diff to
previous 5232
Fix new element insertion failures on PostgreSQL 12
Was getting this:
select Element_Add('/ports/head/www/httpdirfs/', 'F');
ERROR: duplicate key value violates unique constraint "element_pathname_pathname" DETAIL: Key (pathname)=() already exists.
Because:
INSERT INTO element_pathname (element_id, pathname)
VALUES (NEW.id, element_pathname(NEW.id));
The pathname value was always NULL.
The fix, change the SQL to:
DECLARE
l_pathname text;
BEGIN
l_pathname := element_pathname(NEW.id);
INSERT INTO element_pathname (element_id, pathname)
VALUES (NEW.id, l_pathname);
Revision
5223 -
Directory Listing
-
[select for diffs]
Modified
Sat May 25 17:15:59 2019 UTC
(5 years, 10 months ago)
by
dan
Diff to
previous 5222
Add Quarterly revision
* fixes #115
* display the port version on the latest quarterly branch
Add sort-by last updated
* fixes #116
Revision
4796 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 26 22:33:58 2016 UTC
(8 years, 8 months ago)
by
dan
Diff to
previous 4795
* convert all DROP TRIGGER to DROP TRIGGER IF EXISTS
* add port_dependencies_insert_clear_cache() and port_dependencies_delete_clear_cache()
to properly handle changes to the port_dependencies table
Revision
4773 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 2 15:25:08 2016 UTC
(8 years, 9 months ago)
by
dan
Diff to
previous 4767
The stored procedure GetGategory($CategoryName) did not work so I changed it
to prefix the category name with 'ports/head/' instead of just 'ports/'.
It seems this function was not used anywhere, but at least now it works.
Revision
4457 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 7 13:07:32 2012 UTC
(12 years, 7 months ago)
by
dan
Diff to
previous 4444
Change the way we look up at Port ID. This was causing problems for some
ports, which were deleted before we created the ports_categories table.
And thus, have no entries in this table.
Revision
4420 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 26 12:29:25 2012 UTC
(12 years, 9 months ago)
by
dan
Diff to
previous 4387
Correct the calculations of vulnerabilities by not using ports_vulnerable
table. That's what we're setting up now. Don't use it.
Revision
4380 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 24 19:28:29 2011 UTC
(13 years, 6 months ago)
by
dan
Diff to
previous 4355
For some commits, there are no files touched. Allow for that in the SQL
by using left outer joins
If a port cannot be found, raise a notice, not an exception.
Revision
4170 -
Directory Listing
-
[select for diffs]
Modified
Fri Oct 12 15:16:05 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4138
For freshports_commit_port, invoke element_pathname() such that it does not
provide a leading slash in the filename.
Revision
4043 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 31 21:49:24 2007 UTC
(18 years, 2 months ago)
by
dan
Diff to
previous 4011
Add new event to look for:
insert into listen_for (name, script_name) values ('category_new',
'listen_category_new');
When a new category appears, process the categories file.
Revision
3883 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 21 13:41:31 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3865
Add freshports_commit_regular() and freshports_commit_port() to pull back
the right stuff for a given message ID.
Revision
3835 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 5 23:46:26 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3830
listen_for takes better names.
add a new index to vuxml_names. It was in beta, but not prod, and prod runs
slower, or so it seems.
Revision
3772 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 11 02:27:26 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3750
Add a few things, some not yet used.
- listen_for: events that listening daemons should listen for
- top_answers, top_questions: starting point for polling users on things
- event_types: type of events that can be raised in this database
- events: events that have been raised but not yet processed
- cache_clearing_ports: ports that should be removed from cache, populated
by triggers.
Revision
3704 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 31 01:37:34 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3703
A late check of data.
new tables for cross platform and cross arch testing of ports:
releases - what releases have we had?
archs - what archs do we have?
port_status - status of a given port with respect to release and arch
add fields to ports table already in production:
- is_interactive
- only_for_archs
- not_for_archs
For person watch lists on watch_list, create a token
using generate_watch_list_token()
For filtering, add new table element_pathname
EOF.
Revision
3496 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 21 20:59:30 2006 UTC
(19 years, 1 month ago)
by
dan
Diff to
previous 3487
fix Port_ID() and put a condition on the ports.category_id field.
This avoids duplicates when a port is in more than one category.
For example, mail/squirrelmail which is also listed in www.
Revision
3486 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 13 15:16:16 2006 UTC
(19 years, 1 month ago)
by
dan
Diff to
previous 3466
Add WatchListDeletedPorts(bigint) for catering to ports on your watch list which
have been deleted from the ports tree
Add Port_ID() which gives you the port id for a category/port combination. This
function handles virtual cagtegories.
Revision
3244 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 26 14:39:31 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3243
- When moving to using UTC internally (revision 1.79), we changed
page_load_summary.date to a timestamp when it should be a date.
We now change this back.
- Remove commit_log_port_vxuml, added in error. Use the
commit_log_ports_vxuml table instead.
- Add some indexes on the ports table to speed some queries.
- Add the ports_vulnerable table.
Revision
3202 -
Directory Listing
-
[select for diffs]
Modified
Mon Jan 17 00:08:44 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3194
divide LatestCommits into LatestCommitsSmall and LatestCommitsLarge which
deal with 10 and 100 commits respectively. This dramatically improves
the speed.
Revision
3138 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 14 01:10:47 2004 UTC
(20 years, 3 months ago)
by
dan
Diff to
previous 3137
Convert to using timestamp without timezone in anticipation of going to UTC
internally.
Add index on commit_log_ports_port_id on commit_log_ports (port_id);
Revision
3079 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 30 12:36:52 2004 UTC
(20 years, 4 months ago)
by
dan
Diff to
previous 3078
Add some vuxml functions expected to be used when I start optimizing
the vuxml process.
Add currenttimestamputc() that may be useful when moving to UTC
Add WatchersAlsoWatched() to display "People watching this port, also watch".
Revision
2948 -
Directory Listing
-
[select for diffs]
Modified
Fri Sep 17 18:48:16 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2931
Add package_version(text, text, text) RETURNS text
This function strings together PortVersion, PortRevision, and PortEpoch
as they are for a package name.
Revision
2925 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 13 13:01:16 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2907
- is_slave_port text ,
+ master_port text ,
latest_link text ,
+ depends_lib text ,
no_latest_link text ,
no_package text ,
pkgname text ,
+ portepoch
Rename is_slave_port to master_port to reflect what we are actually using in the
database.
Add depends_lib and portepoch.
Revision
2907 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 27 16:55:35 2004 UTC
(20 years, 7 months ago)
by
dan
Diff to
previous 2906
Move range_version_start nearer to the top of the table.
Now we can see the data like this:
range_version_start range_operator_start VERSION and VERSION range_operator_end range_version_end
Example:
1.04b <= VERSION and VERSION < 1.06
Revision
2906 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 27 14:52:07 2004 UTC
(20 years, 7 months ago)
by
dan
Diff to
previous 2905
Alter GetCategoryPortFromLatestLink() to remove RAISE NOTICE debugging
messages. Also if more than one match found, return -1, not the count.
This makes the return value more useful.
Revision
2793 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 1 18:25:35 2004 UTC
(21 years ago)
by
dan
Diff to
previous 2783
Alter freshports_commit(text) to take a page size and offset.
Add freshports_commit_count_elements(text) which returns the number of rows.
Revision
2723 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 31 13:40:13 2004 UTC
(21 years, 2 months ago)
by
dan
Diff to
previous 2722
Reflect changes made to .PDM file:
- announcements table dates do not have time zone
- page_load_summary now has a total and users field
Revision
2698 -
Directory Listing
-
[select for diffs]
Modified
Mon Jan 12 21:02:40 2004 UTC
(21 years, 2 months ago)
by
dan
Diff to
previous 2690
In the page_load_summary table:
remove defaults for user and non_users
rename non_users to total
add rendering_time_min and rendering_time_max
In the page_load_detail table:
split timestamp into two fields: date and time.
remove NOT NULL on user_id column
Revision
2689 -
Directory Listing
-
[select for diffs]
Modified
Fri Jan 9 19:22:33 2004 UTC
(21 years, 2 months ago)
by
dan
Diff to
previous 2681
in page_load_summary:
- rename name to page_name
- add rendering_time_min and rendering_time_max
in page_load_detail
- break timestamp into date and time fields
- user_id can be null
Revision
2653 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 30 14:08:12 2003 UTC
(21 years, 3 months ago)
by
dan
Diff to
previous 2652
Allow nulls on ports_moved.{from_port_id|to_port_id}
I suspect from_port_id cannot be NULL, but we'll adjust that later if need be.
Revision
2613 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 1 18:32:33 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2603
When a new user is created, a watch list is automatically created too.
When this is done, ensure the in_service flag is set to true. Otherewise,
they can't start adding things to their watch list.
See classes/watch_list_element.php::AddToDefault($UserID, $ElementID).
Revision
2583 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 20 14:21:00 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2582
Remove commit_log_port_elements which has been replaced by commit_log_ports_elements
Add index commit_log_ports_elements_clid on
commit_log_ports_elements (commit_log_id)
Revision
2536 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 6 17:32:13 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2535
Replace commit_log_port_extras with commit_log_ports_elements. The function
of the table has changed, but the fields are the same.
Revision
2532 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 6 17:10:50 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2529
Start using new commit_log_ports_elements table in order to simply the
process of displaying both ports and non-ports on a single page.
Revision
2529 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 4 21:32:11 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2528
- remove housekeeping table, no longer used
- alter security_notice
- remove index on security_notice (commit_log_id)
and leave it to the primary key instead.
- move indexes on ports_categories (port_id) and ports_categories (category_id)
- add commit_log_port_extras
Revision
2528 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 4 21:13:34 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2521
- Adjust FUNCTION LastestCommits(int, int) RETURNS SETOF commit_record to
use commit_log_ports_extra.
- At the same time, we can remove an extraneous JOIN.
- Convert those LEFT OUTER JOINs no longer needed to JOINs.
Revision
2396 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 6 12:19:27 2003 UTC
(21 years, 7 months ago)
by
dan
Diff to
previous 2395
Replace OPAQUE with TRIGGER on functions used as triggers.
remember to drop triggers before replacing them:
DROP TRIGGER security_notice_audit ON security_notice;
DROP TRIGGER ports_ports_categories ON ports;
Revision
2380 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 3 23:07:00 2003 UTC
(21 years, 7 months ago)
by
dan
Diff to
previous 2377
ignore ? FreshPorts2.PDB
cvs server: Diffing .
Index: FreshPorts2.pdm
===================================================================
RCS file: /home/repositories/freshports-1/database-schema/FreshPorts2.pdm,v
retrieving revision 1.71
diff -r1.71 FreshPorts2.pdm
51c51
< -- $Id: FreshPorts2.pdm,v 1.71 2003/05/09 19:39:24 dan Exp $\
---
> -- $Id: FreshPorts2.pdm,v 1.70 2003/05/02 18:37:59 dan Exp $\
83c83
< 1052505034
---
> 1052509087
[dan@polo:/usr/websites/working-copy.freshports.org/database-schema] $ cd ..
[dan@polo:/usr/websites/working-copy.freshports.org] $ cd database-schema
[dan@polo:/usr/websites/working-copy.freshports.org/database-schema] $ cvs .ignore
ignore FreshPorts2.PDB
Revision
2365 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 19 13:32:57 2003 UTC
(21 years, 7 months ago)
by
dan
Diff to
previous 2303
Remove functions associated with element_pathnames table.
This table was experimental and attempted to deal with path parsing
issues which would arise with watch lists on FreshSource. We might be
able to use these functions at a later date if we allow people to
watch a directory.
Revision
2147 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 16 00:35:28 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2146
WatchListStagingClear now takes and returns int8
and also renamed WatchListID to UserID to reflect new strategy
WatchListStagingLogClearing now takes int8
ports_categories_set is moved to ri.txt as it becomes a trigger
Revision
2135 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 10 16:32:09 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2125
Add the rules for commit_log_ports which keep it populated with new commits.
We still have to write the rules to clear out this table from time to time.
Revision
2125 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 7 17:02:17 2003 UTC
(22 years ago)
by
dan
Diff to
previous 2097
Avoid a problem which occurs on the day after DST changes:
< select (current_date - interval ''1 day'')::date
---
> select (current_date - 1)::date
While here: whitespace adjustment
Revision
2051 -
Directory Listing
-
[select for diffs]
Modified
Wed Mar 5 19:46:39 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2050
Keep the Makefile status the same as it's parent.
Do a CREATE OR REPLACE on categories_insert_update
add function for user_email_change trigger
Revision
2040 -
Directory Listing
-
[select for diffs]
Modified
Wed Mar 5 13:13:40 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2034
virtual categories:
- Allow categories.element_id to be null
- create table clp (should be renamed)
- create table ports_categories
Revision
1996 -
Directory Listing
-
[select for diffs]
Modified
Fri Feb 21 15:51:32 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 1995
Start using serial so we can remove the add sequence commands
a few other random changes
Part of upgrading to PostgreSQL 7.3
Revision
1695 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 24 04:56:29 2002 UTC
(22 years, 4 months ago)
by
dan
Diff to
previous 1586
- Make Element_Pathname iscachable
- Always insert into system_branch_element_revision when setting a tag
- Use a case instead of a COALESCE for system_branch_element_revision
Revision
1494 -
Directory Listing
-
[select for diffs]
Modified
Tue May 28 15:53:47 2002 UTC
(22 years, 10 months ago)
by
dan
Diff to
previous 1450
create Stats_PortCountNewInterval and modify Stats_PortCountNewToday Stats_PortCountNewYesterday
and Stats_PortCountNewThisWeek to use it.
Revision
1121 -
Directory Listing
-
[select for diffs]
Modified
Sun Mar 17 17:46:31 2002 UTC
(23 years ago)
by
dan
Diff to
previous 1120
- add list of options required in PowerDesigner 6.0 to
generate this database schema
- modify ports_check replacing found_in_ports wih category_id
and port_id
- create index on ports (element_id)
- create view ports_active
Revision
1105 -
Directory Listing
-
[select for diffs]
Modified
Tue Mar 12 19:25:40 2002 UTC
(23 years ago)
by
dan
Diff to
previous 1098
remove DROP FUNCTION statements.
change CREATE FUNCTION to CREATE OR REPLACE FUNCTION to avoid dependency
problems which arise when you drop a function which is used by another function.
Revision
957 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 17 20:00:58 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 956
Add a new column to housekeeping, refresh_done. Any time a port is refreshed,
this bit should be set. It will be cleared by RecordLastestPortCommits.
Revision
927 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 14 20:37:16 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 900
Add two table: commits_latest and housekeeping
which will be used mostly by RecordLastestPortCommits
which records the query results into a table for
easy retrieval.
Revision
878 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 3 15:18:17 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 872
remove an unused ElementTagSet and modify the one which is used.
before we insert into system_branch_element_revision, ensure
the entry is not already there.
Revision
637 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 21 04:06:37 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 635
remove GetOrCreateCategory which was not used.
Remove quotes from field names which screwed up the category entries.
Revision
625 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 20 16:42:55 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 624
rename system_version to system_branch
rename system_version_element to system_branch_element_revision
remove some unneeded sequences
Revision
622 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 20 16:30:58 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 621
rename system_version to system_branch
rename system_version_element to system_branch_element_revision
remove some unneeded sequences
Revision
363 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 28 02:31:01 2001 UTC
(24 years, 2 months ago)
by
dan
Diff to
previous 359
The final bit of code to reflect the latest database changes.
element_revsion is just two fields.
system_version_element is just three fields.