All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.plugins.file-uploader.4.0.4.source-code.file-uploader-3.1.1-add-env-for-ufiles.groovy Maven / Gradle / Ivy

databaseChangeLog = {

    changeSet(author: 'Ankit Agrawal', id: '20180309-1') {
        addColumn(tableName: 'ufile') {
            column(name: 'env_name', type: 'VARCHAR')
        }
    }

    changeSet(author: 'Ankit Agrawal', id: '20180309-2') {
        grailsChange {
            change {
                sql.execute('update ufile set env_name = \'production\'')
                sql.execute('ALTER TABLE ufile ALTER COLUMN env_name SET NOT NULL')
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy