Skip to content

Instantly share code, notes, and snippets.

@wizardishungry
Created March 31, 2009 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wizardishungry/88347 to your computer and use it in GitHub Desktop.
Save wizardishungry/88347 to your computer and use it in GitHub Desktop.
Symfony on OpenBSD 4.4 seems to be having problems making fixtures work
Setting:
password:
key: password
vendor: <?php echo trackerUser::crypt('LimeTracker'),"\n"; ?>
intent:
key: intent
vendor: false
# 3.6.6.2
CREATE TABLE [setting]
(
[key] VARCHAR(255),
[value] VARCHAR(255),
[vendor] VARCHAR(255),
[id] INTEGER NOT NULL PRIMARY KEY
);
INSERT INTO "setting" VALUES('password',NULL,'eX/2o6nmn8LsYftJYp3mxVP4Plw=',1);
INSERT INTO "setting" VALUES('intent',NULL,'',2);
# 3.5.9
CREATE TABLE [setting]
(
[key] VARCHAR(255),
[value] VARCHAR(255),
[vendor] VARCHAR(255),
[id] INTEGER NOT NULL PRIMARY KEY,
UNIQUE ([key])
);
INSERT INTO "setting" VALUES(NULL,NULL,NULL,1);
INSERT INTO "setting" VALUES(NULL,NULL,NULL,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment