Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
fbf44628
Commit
fbf44628
authored
Jul 16, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
ca9b3fb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
61 deletions
+0
-61
ForeignKeyTestCase.php
tests/ForeignKeyTestCase.php
+0
-61
No files found.
tests/ForeignKeyTestCase.php
View file @
fbf44628
...
...
@@ -54,64 +54,3 @@ class Doctrine_ForeignKey_TestCase extends Doctrine_UnitTestCase
));
}
}
class
ClientModel
extends
Doctrine_Record
{
public
function
setTableDefinition
()
{
$this
->
setTableName
(
'clients'
);
$this
->
hasColumn
(
'id'
,
'integer'
,
4
,
array
(
'notnull'
=>
true
,
'primary'
=>
true
,
'autoincrement'
=>
true
,
'unsigned'
=>
true
));
$this
->
hasColumn
(
'short_name'
,
'string'
,
32
,
array
(
'notnull'
=>
true
,
'notblank'
,
'unique'
=>
true
));
}
public
function
setUp
()
{
$this
->
hasMany
(
'AddressModel'
,
array
(
'local'
=>
'client_id'
,
'foreign'
=>
'address_id'
,
'refClass'
=>
'ClientToAddressModel'
));
}
}
class
ClientToAddressModel
extends
Doctrine_Record
{
public
function
setTableDefinition
()
{
$this
->
setTableName
(
'clients_to_addresses'
);
$this
->
hasColumn
(
'client_id'
,
'integer'
,
11
,
array
(
'primary'
=>
true
));
$this
->
hasColumn
(
'address_id'
,
'integer'
,
11
,
array
(
'primary'
=>
true
));
}
public
function
construct
()
{
}
public
function
setUp
()
{
$this
->
hasOne
(
'ClientModel'
,
array
(
'local'
=>
'client_id'
,
'foreign'
=>
'id'
,
'onDelete'
=>
'CASCADE'
));
$this
->
hasOne
(
'AddressModel'
,
array
(
'local'
=>
'address_id'
,
'foreign'
=>
'id'
,
'onDelete'
=>
'CASCADE'
));
}
}
class
AddressModel
extends
Doctrine_Record
{
public
function
setTableDefinition
()
{
$this
->
setTableName
(
'addresses'
);
$this
->
hasColumn
(
'id'
,
'integer'
,
11
,
array
(
'autoincrement'
=>
true
,
'primary'
=>
true
));
$this
->
hasColumn
(
'address1'
,
'string'
,
255
,
array
(
'notnull'
=>
true
,
'notblank'
));
$this
->
hasColumn
(
'address2'
,
'string'
,
255
,
array
(
'notnull'
=>
true
));
$this
->
hasColumn
(
'city'
,
'string'
,
255
,
array
(
'notnull'
=>
true
,
'notblank'
));
$this
->
hasColumn
(
'state'
,
'string'
,
10
,
array
(
'notnull'
=>
true
,
'notblank'
,
'usstate'
));
$this
->
hasColumn
(
'zip'
,
'string'
,
15
,
array
(
'notnull'
=>
true
,
'notblank'
,
'regexp'
=>
'/^[0-9-]*$/'
));
}
public
function
setUp
()
{
$this
->
hasMany
(
'ClientModel'
,
array
(
'local'
=>
'address_id'
,
'foreign'
=>
'client_id'
,
'refClass'
=>
'ClientToAddressModel'
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment