You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo adduser DB_USER
su postgres
psql template1
create database DB_NAME;
CREATE USER DB_USER WITH PASSWORD 'DB_PASS';
GRANT ALL PRIVILEGES ON DATABASE DB_NAME to DB_USER;
\q
Generate schema file from Hibernate
mvn clean install
mvn hibernate3:hbm2ddl
Create the schema from hibernate generated DDL file
su DB_USER
psql -d ckarchive
\i /home/sroy/dev/git/PROJ_NAME/target/hibernate3/sql/schema.ddl