Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
d0aadffb
Commit
d0aadffb
authored
Jun 02, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing test models for elasticsearch
parent
0003b10b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
0 deletions
+53
-0
OrderItemWithNullFK.php
tests/unit/data/ar/elasticsearch/OrderItemWithNullFK.php
+24
-0
OrderWithNullFK.php
tests/unit/data/ar/elasticsearch/OrderWithNullFK.php
+29
-0
No files found.
tests/unit/data/ar/elasticsearch/OrderItemWithNullFK.php
0 → 100644
View file @
d0aadffb
<?php
namespace
yiiunit\data\ar\elasticsearch
;
/**
* Class OrderItem
*
* @property integer $order_id
* @property integer $item_id
* @property integer $quantity
* @property string $subtotal
*/
class
OrderItemWithNullFK
extends
ActiveRecord
{
public
function
attributes
()
{
return
[
'order_id'
,
'item_id'
,
'quantity'
,
'subtotal'
];
}
public
static
function
tableName
()
{
return
'order_item_with_null_fk'
;
}
}
tests/unit/data/ar/elasticsearch/OrderWithNullFK.php
0 → 100644
View file @
d0aadffb
<?php
namespace
yiiunit\data\ar\elasticsearch
;
/**
* Class Order
*
* @property integer $id
* @property integer $customer_id
* @property integer $created_at
* @property string $total
*/
class
OrderWithNullFK
extends
ActiveRecord
{
public
static
function
primaryKey
()
{
return
[
'id'
];
}
public
function
attributes
()
{
return
[
'id'
,
'customer_id'
,
'created_at'
,
'total'
];
}
public
static
function
tableName
()
{
return
'order_with_null_fk'
;
}
}
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