db.postgresql.migrate.4.4.7.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beangle-ems-core Show documentation
Show all versions of beangle-ems-core Show documentation
The Beangle EMS Application
alter table bulletin.notices add issuer varchar(40);
update bulletin.notices n set issuer = (select u.name from usr.users u where u.id=n.operator_id);
alter table bulletin.notices alter column issuer set not null;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy