wintercms / wn-builder-plugin

GUI for building plugins in Winter CMS
MIT License
34 stars 12 forks source link

Add support for marking columns unique when creating database tables #19

Open LukeTowers opened 2 years ago

LukeTowers commented 2 years ago

Would be nice to add a checkbox to indicate that a given column should have a unique index added to it when building the table schema

WebVPF commented 2 years ago

unique and index

$table->unique('email');
$table->index('state');