Elgg
Version 6.1
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
engine
schema
migrations
20170728074828_create_groups_entity_table.php
Go to the documentation of this file.
1
<?php
2
3
use
Phinx\Migration\AbstractMigration
;
4
use
Phinx\Db\Adapter\MysqlAdapter
;
5
6
class
CreateGroupsEntityTable
extends
AbstractMigration {
17
public
function
change
() {
18
19
if
($this->hasTable(
"groups_entity"
)) {
20
return
;
21
}
22
23
$table
= $this->table(
"groups_entity"
, [
24
'id'
=>
false
,
25
'primary_key'
=> [
"guid"
],
26
'engine'
=>
"InnoDB"
,
27
'encoding'
=>
"utf8mb4"
,
28
'collation'
=>
"utf8mb4_general_ci"
,
29
]);
30
31
$table
->addColumn(
'guid'
,
'integer'
, [
32
'null'
=>
false
,
33
'limit'
=> MysqlAdapter::INT_BIG,
34
'precision'
=> 20,
35
'signed'
=>
false
,
36
]);
37
38
$table
->addColumn(
'name'
,
'text'
, [
39
'null'
=>
false
,
40
]);
41
42
$table
->addColumn(
'description'
,
'text'
, [
43
'null'
=>
false
,
44
'limit'
=> MysqlAdapter::TEXT_LONG,
45
]);
46
47
$table
->addIndex([
'name'
], [
48
'name'
=>
"name"
,
49
'unique'
=>
false
,
50
'limit'
=> 50,
51
]);
52
53
$table
->addIndex([
'description'
], [
54
'name'
=>
"description"
,
55
'unique'
=>
false
,
56
'limit'
=> 50
57
]);
58
59
$table
->save();
60
61
}
62
}
MysqlAdapter
CreateGroupsEntityTable
Definition:
20170728074828_create_groups_entity_table.php:6
$table
$table
Definition:
user.php:37
CreateGroupsEntityTable\change
change()
CREATE TABLE prefix_groups_entity ( guid bigint(20) unsigned NOT NULL, name text NOT NULL...
Definition:
20170728074828_create_groups_entity_table.php:17
AbstractMigration
Generated on Wed Dec 4 2024 00:00:22 for Elgg by
1.8.11