- Avoid
SELECT *
: specify column names that are really going to be used JOIN
prefer to use indexed columns and columns of the same typeLIMIT 0,1
when getting a unique row
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Selectize.define( 'clear_selection', function ( options ) { | |
var self = this; | |
//Overriding because, ideally you wouldn't use header & clear_selection simultaneously | |
self.plugins.settings.dropdown_header = $.extend({ | |
title: 'Clear selection' | |
}, options); | |
this.require( 'dropdown_header' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"name":"members","color":"Red","position":{"x":464,"y":549},"increment":false,"timestamp":true,"softdelete":true,"column":[{"name":"id","type":"increments","length":"","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":false,"in":false,"un":false,"fillable":false,"guarded":false,"visible":false,"hidden":false,"colid":"c25","order":0},{"name":"first_name","type":"string","length":"100","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":false,"in":false,"un":false,"fillable":false,"guarded":false,"visible":false,"hidden":false,"colid":"c44","order":1},{"name":"last_name","type":"string","length":"100","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":false,"in":false,"un":false,"fillable":false,"guarded":false,"visible":false,"hidden":false,"colid":"c52","order":2},{"name":"birth_date","type":"date","length":"","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":false,"in":false,"un":false,"fillable":false,"guarded":false,"visible |