Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | $this->createTable('account', [ |
||
16 | 'id' => $this->primaryKey(), |
||
17 | 'username' => $this->string()->notNull()->unique(), |
||
18 | 'profile_pic_url' => $this->string(), |
||
19 | 'full_name' => $this->string(), |
||
20 | 'biography' => $this->string(), |
||
21 | 'external_url' => $this->string(), |
||
22 | 'instagram_id' => $this->string(), |
||
23 | 'updated_at' => $this->dateTime(), |
||
24 | 'created_at' => $this->dateTime(), |
||
25 | 'monitoring' => $this->boolean()->notNull()->defaultValue(0), |
||
26 | ]); |
||
37 |