createTable('{{%slider}}', [ 'id' => $this->primaryKey(), 'title' => $this->string(128), 'tagline' => $this->string(255), 'image' => $this->string(255), 'url' => $this->string(255), 'sort' => $this->integer(11)->defaultValue(100), ], $tableOptions); } /** * @inheritdoc */ public function down() { $this->dropTable('{{%slider}}'); } }