summaryrefslogtreecommitdiff
path: root/lib/pgsqlschema.php
AgeCommit message (Collapse)Author
2010-10-13Filter table definitions to scrub out unsupported features before trying to ↵Brion Vibber
alter a table. This lets us skip those where we end up trying to change unsupported features.
2010-10-11Start reworking things to build create table stuff (can view via ↵Brion Vibber
dumpschema.php --build)
2010-10-11PgsqlSchema can now pull primary, unique, mutli-value, *and* foreign keys :DBrion Vibber
2010-10-11Now pulling non-primary/unique index data for PG as well... need to sort out ↵Brion Vibber
conflicts with the other data and make foreign references work right :D
2010-10-11quick syntax fixBrion Vibber
2010-10-08Merge branch 'schema-x' of /Users/brion/pages/mublog into schema-xBrion Vibber
2010-10-08Starting on adapting postgresql schema class to look stuff up in the new ↵Brion Vibber
drupalish format... Fetching basic column data and unique indexes. Still needs detail work, multi-value indexes, foreign keys, and distinguishing the primary key. Since we don't get comments and such, for cleaner comparisons we should probably do a filtering on supported features.
2010-10-07Some more poking at schema stuff, on the road towards a more portable ↵Brion Vibber
table-modification with the new schema bits
2010-08-16More schema work in progress... removing duped code from schema child ↵Brion Vibber
classes, rebuilding things a bit more (incomplete; non-working state)
2010-05-17fix the column modify on stuff for postgres. change serial to bigserialBrenda Wallace
2010-05-15comment out the extra bit, cos there's always mysql-only stuff in therre.Brenda Wallace
this isn't a very good idea
2010-05-15caitalise the sql keywordsBrenda Wallace
2010-05-15indexes now working in postgres schemasBrenda Wallace
2010-05-15removed sneaky debug echo that shouldn't be thereBrenda Wallace
2010-05-15sorted enums and auto_increments on postgres.Brenda Wallace
Still needs inline indexes on table creation
2010-03-11Remove stray whitespace at file start that snuck into last updateBrion Vibber
2010-03-10removed a stay bit of debugBrenda Wallace
2010-03-10map the mysql-ish column types to ones postgres likesBrenda Wallace
2010-03-10primary keys and unique indexes working in postgresBrenda Wallace
2010-03-10throw an error that looks like mysql errors.. :-SBrenda Wallace
2010-01-31move schema.type.php to typeschema.php like other filesEvan Prodromou