Author: cbrisson
Date: Sun Apr 21 05:02:36 2019
New Revision: 1857893

URL: http://svn.apache.org/viewvc?rev=1857893&view=rev
Log:
[tools/model] Remove references to authentication in example

Modified:
    
velocity/tools/branches/model/velocity-tools-examples/velocity-tools-examples-bookshelf/src/main/webapp/WEB-INF/bookshelf.sql

Modified: 
velocity/tools/branches/model/velocity-tools-examples/velocity-tools-examples-bookshelf/src/main/webapp/WEB-INF/bookshelf.sql
URL: 
http://svn.apache.org/viewvc/velocity/tools/branches/model/velocity-tools-examples/velocity-tools-examples-bookshelf/src/main/webapp/WEB-INF/bookshelf.sql?rev=1857893&r1=1857892&r2=1857893&view=diff
==============================================================================
--- 
velocity/tools/branches/model/velocity-tools-examples/velocity-tools-examples-bookshelf/src/main/webapp/WEB-INF/bookshelf.sql
 (original)
+++ 
velocity/tools/branches/model/velocity-tools-examples/velocity-tools-examples-bookshelf/src/main/webapp/WEB-INF/bookshelf.sql
 Sun Apr 21 05:02:36 2019
@@ -47,16 +47,7 @@ create table book_author
     foreign key (author_id) references author (author_id)
 );
 
-create table friend
-(
-    friend_id int not null,
-    login varchar(200) not null,
-    password varchar(200) not null,
-    primary key (friend_id)
-);
-
 insert into publisher values (1, 'Green Penguin Books'), (2, 'Serious Stuff 
Publishing');
 insert into book values (1, 'The Astonishing Life of Duncan Aston', 1), (2, 
'Beyond the Surface of Things', 2), (3, 'Seeds and Flowers', 2);
 insert into author values (1, 'Graham Brigovicz'), (2, 'Robert Willhelm'), (3, 
'Vanessa Hopkins'), (4, 'Kai Mattey');
 insert into book_author values (1, 1), (1, 2), (2, 3), (3, 4);
-insert into friend values (1, 'nestor', 'secret');


Reply via email to