Milos Ozegovic
Milos Ozegovic
I don't see any option in that plugin to save both cropped and original image...
Maybe something like ```php $this->createTable('tableName', [ 'id' => $this->primaryKey(), 'column' => $this->string() ], 'some options', [ 'index1' => ['column1', 'column2'], 'index2' => ['column3'] ]); ``` OR ```php $this->createTable('tableName', [ 'id'...
I personally like first option better, but whatever you make is okay with me.
Great ideas, but what about complex indexes?
I'm with @rob006 on this one, his example is quite good.