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

sql.migration.V20150731134010__GroupAddTopic.sql Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
alter table groups add column topic varchar(255);
alter table groups rename column description to about;
alter table groups alter column about drop not null;
alter table groups alter column about drop default;
update groups set about = null where about = '';




© 2015 - 2024 Weber Informatics LLC | Privacy Policy