createTable('links', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'code' => $this->string()->unique(), 'tm' => $this->timestamp()->defaultExpression('NOW()') ]); } /** * @inheritdoc */ public function down() { $this->dropTable('links'); } }