root/events/phpframework/sabel/trunk/migration/default/3_Request_create.php @ 20065

Revision 20065, 362 bytes (checked in by sabel, 5 years ago)

import phwittr

Line 
1<?php
2
3$create->column("user_id")->type(_INT)->nullable(false);
4$create->column("request_id")->type(_INT)->nullable(false);
5$create->column("created_at")->type(_DATETIME)->nullable(false);
6
7$create->fkey("user_id");
8$create->fkey("request_id")->table("user")->column("id");
9$create->primary(array("user_id", "request_id"));
10$create->options("engine", "InnoDB");
Note: See TracBrowser for help on using the browser.