This file is indexed.

/usr/share/perl5/Catalyst/Manual/Tutorial/10_Appendices.pod is in libcatalyst-manual-perl 5.9007-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
=head1 NAME

Catalyst::Manual::Tutorial::10_Appendices - Catalyst Tutorial - Chapter 10: Appendices


=head1 OVERVIEW

This is B<Chapter 10 of 10> for the Catalyst tutorial.

L<Tutorial Overview|Catalyst::Manual::Tutorial>

=over 4

=item 1

L<Introduction|Catalyst::Manual::Tutorial::01_Intro>

=item 2

L<Catalyst Basics|Catalyst::Manual::Tutorial::02_CatalystBasics>

=item 3

L<More Catalyst Basics|Catalyst::Manual::Tutorial::03_MoreCatalystBasics>

=item 4

L<Basic CRUD|Catalyst::Manual::Tutorial::04_BasicCRUD>

=item 5

L<Authentication|Catalyst::Manual::Tutorial::05_Authentication>

=item 6

L<Authorization|Catalyst::Manual::Tutorial::06_Authorization>

=item 7

L<Debugging|Catalyst::Manual::Tutorial::07_Debugging>

=item 8

L<Testing|Catalyst::Manual::Tutorial::08_Testing>

=item 9

L<Advanced CRUD|Catalyst::Manual::Tutorial::09_AdvancedCRUD>

=item 10

B<10_Appendices>

=back


=head1 DESCRIPTION

This chapter of the tutorial provides supporting information relevant to
the Catalyst tutorial.


=head1 APPENDIX 1: CUT AND PASTE FOR POD-BASED EXAMPLES

You may notice that Pod indents example code with four spaces.  This
section provides some quick advice to "un-indent" this text in common
editors.

=head2 "Un-indenting" with Vi/Vim

When cutting and pasting multi-line text from Pod-based documents, the
following vi/vim regexs can be helpful to "un-indent" the inserted text
(do NOT type the quotes, they are only included to show spaces in the
regex patterns).  I<Note that all 3 of the regexs end in 4 spaces>:

=over 4

=item *

":0,$s/^    "

Removes four leading spaces from the entire file (from the first line,
C<0>, to the last line, C<$>).

=item *

"%s/^    "

A shortcut for the previous item (C<%> specifies the entire file; so
this removes four leading spaces from every line).

=item *

":.,$s/^    "

Removes the first four spaces from the line the cursor is on at the time
the regex command is executed (".") to the last line of the file.

=item *

":.,44s/^    "

Removes four leading space from the current line through line 44
(obviously adjust the C<44> to the appropriate value in your example).

=back

=head2 "Un-indenting" with Emacs

Although the author has not used Emacs for many years (apologies to
the Emacs fans out there), here is a quick hint to get you started.  To
replace the leading spaces of every line in a file, use:

    M-x replace-regexp<RET>
    Replace regexp: ^    <RET>
    with: <RET>

All of that will occur on the single line at the bottom of your screen.
Note that "<RET>" represents the return key/enter.  Also, there are
four spaces after the "^" on the "Replace regexp:" line and no spaces
entered on the last line.

You can limit the replacement operation by selecting text first (depending
on your version of Emacs, you can either use the mouse or experiment with
commands such as C<C-SPC> to set the mark at the cursor location and
C<C-E<lt>> and C<C-E<gt>> to set the mark at the beginning and end of the
file respectively.

Also, Stefan Kangas sent in the following tip about an alternate 
approach using the command C<indent-region> to redo the indentation 
for the currently selected region (adhering to indent rules in the 
current major mode). You can run the command by typing M-x 
indent-region or pressing the default keybinding C-M-\ in cperl-mode. 
Additional details can be found here:

L<http://www.gnu.org/software/emacs/manual/html_node/emacs/Indentation-Commands.html>


=head1 APPENDIX 2: USING POSTGRESQL AND MYSQL

The main database used in this tutorial is the very simple yet powerful
L<SQLite|http://www.sqlite.org>.  This section provides information
that can be used to "convert" the tutorial to use
L<PostgreSQL|http://www.postgresql.org> and
L<MySQL|http://dev.mysql.com>.  However, note that part of
the beauty of the MVC architecture is that very little database-specific
code is spread throughout the system (at least when MVC is "done
right").  Consequently, converting from one database to another is
relatively painless with most Catalyst applications.  In general, you
just need to adapt the schema definition C<.sql> file you use to
initialize your database and adjust a few configuration parameters.

Also note that the purpose of the data definition statements for this
section are not designed to take maximum advantage of the various
features in each database for issues such as referential integrity and
field types/constraints.


=head2 PostgreSQL

Use the following steps to adapt the tutorial to PostgreSQL.  Thanks 
to Caelum (Rafael Kitover) for assistance with the most recent 
updates, and Louis Moore, Marcello Romani and Tom Lanyon for help with 
earlier versions.

=over 4

=item *

Chapter 3: More Catalyst Basics

=over 4

=item *

Install the PostgreSQL server and client and DBD::Pg:

If you are following along in Debian 6, you can quickly install these
items via this command:

    sudo aptitude install postgresql libdbd-pg-perl libdatetime-format-pg-perl

To configure the permissions, you can open 
C</etc/postgresql/8.3/main/pg_hba.conf> and change this line (near the 
bottom):

    # "local" is for Unix domain socket connections only
    local   all         all                               ident sameuser

to:

    # "local" is for Unix domain socket connections only
    local   all         all                               trust

And then restart PostgreSQL:

    sudo /etc/init.d/postgresql-8.3 restart


=item *

Create the database and a user for the database (note that we are 
using "E<lt>catalystE<gt>" to represent the hidden password of 
"catalyst"):

    $ sudo -u postgres createuser -P catappuser
    Enter password for new role: <catalyst>
    Enter it again: <catalyst>
    Shall the new role be a superuser? (y/n) n
    Shall the new role be allowed to create databases? (y/n) n
    Shall the new role be allowed to create more new roles? (y/n) n
    CREATE ROLE
    $ sudo -u postgres createdb -O catappuser catappdb
    CREATE DATABASE

=item *

Create the C<.sql> file and load the data:

=over 4

=item *

Open the C<myapp01_psql.sql> in your editor and enter:

    --
    -- Drops just in case you are reloading
    ---
    DROP TABLE IF EXISTS books CASCADE;
    DROP TABLE IF EXISTS authors CASCADE;
    DROP TABLE IF EXISTS book_authors CASCADE;
    DROP TABLE IF EXISTS users CASCADE;
    DROP TABLE IF EXISTS roles CASCADE;
    DROP TABLE IF EXISTS user_roles CASCADE;
    
    --
    -- Create a very simple database to hold book and author information
    --
    CREATE TABLE books (
        id          SERIAL PRIMARY KEY,
        title       TEXT ,
        rating      INTEGER,
        -- Manually add these later
        -- created     TIMESTAMP NOT NULL DEFAULT now(),
        -- updated     TIMESTAMP
    );
    
    CREATE TABLE authors (
        id          SERIAL PRIMARY KEY,
        first_name  TEXT,
        last_name   TEXT
    );
    
    -- 'book_authors' is a many-to-many join table between books & authors
    CREATE TABLE book_authors (
        book_id     INTEGER REFERENCES books(id) ON DELETE CASCADE ON UPDATE CASCADE,
        author_id   INTEGER REFERENCES authors(id) ON DELETE CASCADE ON UPDATE CASCADE,
        PRIMARY KEY (book_id, author_id)
    );
    
    ---
    --- Load some sample data
    ---
    INSERT INTO books (title, rating) VALUES ('CCSP SNRS Exam Certification Guide', 5);
    INSERT INTO books (title, rating) VALUES ('TCP/IP Illustrated, Volume 1', 5);
    INSERT INTO books (title, rating) VALUES ('Internetworking with TCP/IP Vol.1', 4);
    INSERT INTO books (title, rating) VALUES ('Perl Cookbook', 5);
    INSERT INTO books (title, rating) VALUES ('Designing with Web Standards', 5);
    INSERT INTO authors (first_name, last_name) VALUES ('Greg', 'Bastien');
    INSERT INTO authors (first_name, last_name) VALUES ('Sara', 'Nasseh');
    INSERT INTO authors (first_name, last_name) VALUES ('Christian', 'Degu');
    INSERT INTO authors (first_name, last_name) VALUES ('Richard', 'Stevens');
    INSERT INTO authors (first_name, last_name) VALUES ('Douglas', 'Comer');
    INSERT INTO authors (first_name, last_name) VALUES ('Tom', 'Christiansen');
    INSERT INTO authors (first_name, last_name) VALUES ('Nathan', 'Torkington');
    INSERT INTO authors (first_name, last_name) VALUES ('Jeffrey', 'Zeldman');
    INSERT INTO book_authors VALUES (1, 1);
    INSERT INTO book_authors VALUES (1, 2);
    INSERT INTO book_authors VALUES (1, 3);
    INSERT INTO book_authors VALUES (2, 4);
    INSERT INTO book_authors VALUES (3, 5);
    INSERT INTO book_authors VALUES (4, 6);
    INSERT INTO book_authors VALUES (4, 7);
    INSERT INTO book_authors VALUES (5, 8);

=item *

Load the data:

    $ psql -U catappuser -W catappdb -f myapp01_psql.sql
    Password for user catappuser: 
    psql:myapp01_psql.sql:8: NOTICE:  CREATE TABLE will create implicit sequence "books_id_seq" for serial column "books.id"
    psql:myapp01_psql.sql:8: NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "books_pkey" for table "books"
    CREATE TABLE
    psql:myapp01_psql.sql:15: NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "book_authors_pkey" for table "book_authors"
    CREATE TABLE
    psql:myapp01_psql.sql:21: NOTICE:  CREATE TABLE will create implicit sequence "authors_id_seq" for serial column "authors.id"
    psql:myapp01_psql.sql:21: NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "authors_pkey" for table "authors"
    CREATE TABLE
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1
    ...

=item *

Make sure the data loaded correctly:

    $ psql -U catappuser -W catappdb
    Password for user catappuser: <catalyst>
    Welcome to psql 8.3.7, the PostgreSQL interactive terminal.
    
    Type:  \copyright for distribution terms
           \h for help with SQL commands
           \? for help with psql commands
           \g or terminate with semicolon to execute query
           \q to quit
    
    catappdb=> \dt
                 List of relations
     Schema |     Name     | Type  |   Owner    
    --------+--------------+-------+------------
     public | authors      | table | catappuser
     public | book_authors | table | catappuser
     public | books        | table | catappuser
    (3 rows)
    
    catappdb=> select * from books;
     id |               title                | rating 
    ----+------------------------------------+--------
      1 | CCSP SNRS Exam Certification Guide |      5
      2 | TCP/IP Illustrated, Volume 1       |      5
      3 | Internetworking with TCP/IP Vol.1  |      4
      4 | Perl Cookbook                      |      5
      5 | Designing with Web Standards       |      5
    (5 rows)
    
    catappdb=> 

=back

=item *

After the steps where you:

    edit lib/MyApp.pm
    
    create lib/MyAppDB.pm
    
    create lib/MyAppDB/Book.pm
    
    create lib/MyAppDB/Author.pm
    
    create lib/MyAppDB/BookAuthor.pm


=item *

Generate the model using the Catalyst "_create.pl" script:

    $ rm lib/MyApp/Model/DB.pm   # Delete just in case already there
    $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
        create=static components=TimeStamp,PassphraseColumn \
        'dbi:Pg:dbname=catappdb' 'catappuser' 'catalyst' '{ AutoCommit => 1 }'

=back

=item *

Chapter 4: Basic CRUD

Add Datetime Columns to Our Existing Books Table

    $ psql -U catappuser -W catappdb
    ...
    catappdb=> ALTER TABLE books ADD created TIMESTAMP NOT NULL DEFAULT now();
    ALTER TABLE
    catappdb=> ALTER TABLE books ADD updated TIMESTAMP;
    ALTER TABLE
    catappdb=> \q

Re-generate the model using the Catalyst "_create.pl" script:

    $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
        create=static components=TimeStamp,PassphraseColumn \
        'dbi:Pg:dbname=catappdb' 'catappuser' 'catalyst' '{ AutoCommit => 1 }'


=item *

Chapter 5: Authentication

=over 4

=item *

Create the C<.sql> file for the user/roles data:

Open C<myapp02_psql.sql> in your editor and enter:

    --
    -- Add users and roles tables, along with a many-to-many join table
    --
    
    CREATE TABLE users (
        id            SERIAL PRIMARY KEY,
        username      TEXT,
        password      TEXT,
        email_address TEXT,
        first_name    TEXT,
        last_name     TEXT,
        active        INTEGER
    );
    
    CREATE TABLE roles (
        id   SERIAL PRIMARY KEY,
        role TEXT
    );
    
    CREATE TABLE user_roles (
        user_id INTEGER REFERENCES users(id) ON DELETE CASCADE ON UPDATE CASCADE,
        role_id INTEGER REFERENCES roles(id) ON DELETE CASCADE ON UPDATE CASCADE,
        PRIMARY KEY (user_id, role_id)
    );
    
    --
    -- Load up some initial test data
    --
    INSERT INTO users (username, password, email_address, first_name, last_name, active) 
        VALUES ('test01', 'mypass', 't01@na.com', 'Joe',  'Blow', 1);
    INSERT INTO users (username, password, email_address, first_name, last_name, active) 
        VALUES ('test02', 'mypass', 't02@na.com', 'Jane', 'Doe',  1);
    INSERT INTO users (username, password, email_address, first_name, last_name, active)
        VALUES ('test03', 'mypass', 't03@na.com', 'No',   'Go',   0);
    INSERT INTO roles (role) VALUES ('user');
    INSERT INTO roles (role) VALUES ('admin');
    INSERT INTO user_roles VALUES (1, 1);
    INSERT INTO user_roles VALUES (1, 2);
    INSERT INTO user_roles VALUES (2, 1);
    INSERT INTO user_roles VALUES (3, 1);

=item *

Load the data:

    $ psql -U catappuser -W catappdb -f myapp02_psql.sql
    Password for user catappuser: <catalyst>
    psql:myapp02_psql.sql:13: NOTICE:  CREATE TABLE will create implicit sequence "users_id_seq" for serial column "users.id"
    psql:myapp02_psql.sql:13: NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "users_pkey" for table "users"
    CREATE TABLE
    psql:myapp02_psql.sql:18: NOTICE:  CREATE TABLE will create implicit sequence "roles_id_seq" for serial column "roles.id"
    psql:myapp02_psql.sql:18: NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "roles_pkey" for table "roles"
    CREATE TABLE
    psql:myapp02_psql.sql:24: NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "user_roles_pkey" for table "user_roles"
    CREATE TABLE
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1
    INSERT 0 1

Confirm with:

    $ psql -U catappuser -W catappdb -c "select * from users"
    Password for user catappuser: <catalyst>
     id | username | password | email_address | first_name | last_name | active 
    ----+----------+----------+---------------+------------+-----------+--------
      1 | test01   | mypass   | t01@na.com    | Joe        | Blow      |      1
      2 | test02   | mypass   | t02@na.com    | Jane       | Doe       |      1
      3 | test03   | mypass   | t03@na.com    | No         | Go        |      0
    (3 rows)


=item *

Modify C<set_hashed_passwords.pl> to match the following (the only difference
is the C<connect> line):

    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    use MyApp::Schema;
    
    my $schema = MyApp::Schema->connect('dbi:Pg:dbname=catappdb', 'catappuser', 'catalyst');
    
    my @users = $schema->resultset('Users')->all;
    
    foreach my $user (@users) {
        $user->password('mypass');
        $user->update;
    }

Run the C<set_hashed_passwords.pl> as per the "normal" flow of the 
tutorial:

    $ perl -Ilib set_hashed_passwords.pl

You can verify that it worked with this command:

    $ psql -U catappuser -W catappdb -c "select * from users"


=back

=back


=head2 MySQL

Use the following steps to adapt the tutorial to MySQL.  Thanks to Jim
Howard for the help and Zsolt Zemancsik for the up to date fixes.

=over 4

=item *

Chapter 3: Catalyst Basics

=over 4

=item *

Install the required software:

=over 4

=item *

The MySQL database server and client utility.

=item *

The Perl C<DBD::MySQL> module

=back

For CentOS users (see
L<Catalyst::Manual::Installation::CentOS4>),
you can use the following commands to install the software and start the MySQL
daemon:

    yum -y install mysql mysql-server
    service mysqld start

For Debian users you can use the following commands to install the software and start the MySQL
daemon:

    apt-get install mysql-client mysql-server
    /etc/init.d/mysql start

B<NOTE:> The tutorial is based on Foreign Keys in database which is supported by InnoDB.
Only MySQL 5.0 and above supports InnoDB storage Engine so you need to have InnoDB support
in you MySQL. You can simply figure out that your install supports it or not:

    # mysql -u root -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input 
    statement.
    
    mysql> SHOW VARIABLES LIKE 'have_innodb';
    +---------------+-------+
    | Variable_name | Value |
    +---------------+-------+
    | have_innodb   | YES   |
    +---------------+-------+
    1 row in set (0.01 sec)
    
    mysql> exit
    Bye

If the Value is "YES" you can use your setup (Debian based mysql supports it by default).
Else, you need to configure your my.cnf or start your MySQL daemon without --skip-innodb option.

=item *

Create the database and set the permissions:

    # mysql -u root -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    
    mysql> CREATE DATABASE `myapp`;
    Query OK, 1 row affected (0.01 sec)
    
    mysql> GRANT ALL PRIVILEGES ON myapp.* TO 'tutorial'@'localhost' IDENTIFIED BY 'yourpassword';
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> FLUSH PRIVILEGES;
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> exit
    Bye


=item *

Create the C<.sql> file and load the data:

=over 4

=item *

Open the C<myapp01_mysql.sql> in your editor and enter:

    --
    -- Create a very simple database to hold book and author information
    --
    CREATE TABLE IF NOT EXISTS `books` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `title` text CHARACTER SET utf8,
      `rating` int(11) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
    -- 'book_authors' is a many-to-many join table between books & authors
    CREATE TABLE IF NOT EXISTS `book_authors` (
      `book_id` int(11) NOT NULL DEFAULT '0',
      `author_id` int(11) NOT NULL DEFAULT '0',
      PRIMARY KEY (`book_id`,`author_id`),
      KEY `author_id` (`author_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    CREATE TABLE IF NOT EXISTS `authors` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `first_name` text CHARACTER SET utf8,
      `last_name` text CHARACTER SET utf8,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB  DEFAULT CHARSET=utf8;
    ---
    --- Load some sample data
    ---
    INSERT INTO `books` (`id`, `title`, `rating`) VALUES
    (1, 'CCSP SNRS Exam Certification Guide', 5),
    (2, 'TCP/IP Illustrated, Volume 1', 5),
    (3, 'Internetworking with TCP/IP Vol.1', 4),
    (4, 'Perl Cookbook', 5),
    (5, 'Designing with Web Standards', 5);
    
    INSERT INTO `book_authors` (`book_id`, `author_id`) VALUES
    (1, 1),
    (1, 2),
    (1, 3),
    (2, 4),
    (3, 5),
    (4, 6),
    (4, 7),
    (5, 8);
    
    INSERT INTO `authors` (`id`, `first_name`, `last_name`) VALUES
    (1, 'Greg', 'Bastien'),
    (2, 'Sara', 'Nasseh'),
    (3, 'Christian', 'Degu'),
    (4, 'Richard', 'Stevens'),
    (5, 'Douglas', 'Comer'),
    (6, 'Tom', 'Christiansen'),
    (7, 'Nathan', 'Torkington'),
    (8, 'Jeffrey', 'Zeldman');
    
    ALTER TABLE `book_authors`
    ADD CONSTRAINT `book_author_ibfk_2` FOREIGN KEY (`author_id`) REFERENCES `authors` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
    ADD CONSTRAINT `book_author_ibfk_1` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

=item *

Load the data:

    mysql -u tutorial -p myapp < myapp01_mysql.sql

=item *

Make sure the data loaded correctly:

    $ mysql -u tutorial -p myapp
    Reading table information for completion of table and column names
    You can turn off this feature to get a quicker startup with -A
    
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
    
    mysql> show tables;
    +-----------------+
    | Tables_in_myapp |
    +-----------------+
    | authors         |
    | book_authors    |
    | books           |
    +-----------------+
    3 rows in set (0.00 sec)
    
    mysql> select * from books;
    +----+------------------------------------+--------+
    | id | title                              | rating |
    +----+------------------------------------+--------+
    |  1 | CCSP SNRS Exam Certification Guide |      5 |
    |  2 | TCP/IP Illustrated, Volume 1       |      5 |
    |  3 | Internetworking with TCP/IP Vol.1  |      4 |
    |  4 | Perl Cookbook                      |      5 |
    |  5 | Designing with Web Standards       |      5 |
    +----+------------------------------------+--------+
    5 rows in set (0.00 sec)
    
    mysql>

=back

=item *

Update the model:

=over 4

=item *

Delete the existing model:

    rm lib/MyApp/Model/MyAppDB.pm

=item *

Regenerate the model using the Catalyst "_create.pl" script:

    script/myapp_create.pl model DB DBIC::Schema MyApp::Schema create=static \
	dbi:mysql:myapp 'tutorial' 'yourpassword' '{ AutoCommit => 1 }'

=back

=back

=item *

Chapter 5: Authentication

=over 4

=item *

Create the C<.sql> file for the user/roles data:

Open C<myapp02_mysql.sql> in your editor and enter:

    --
    -- Add users and roles tables, along with a many-to-many join table
    --
    CREATE TABLE IF NOT EXISTS `roles` (
      `id` int(11) NOT NULL,
      `role` text CHARACTER SET utf8,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    CREATE TABLE IF NOT EXISTS `users` (
      `id` int(11) NOT NULL,
      `username` text CHARACTER SET utf8,
      `password` text CHARACTER SET utf8,
      `email_address` text CHARACTER SET utf8,
      `first_name` text CHARACTER SET utf8,
      `last_name` text CHARACTER SET utf8,
      `active` int(11) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    CREATE TABLE IF NOT EXISTS `user_roles` (
      `user_id` int(11) NOT NULL DEFAULT '0',
      `role_id` int(11) NOT NULL DEFAULT '0',
      PRIMARY KEY (`user_id`,`role_id`),
      KEY `role_id` (`role_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    --
    -- Load up some initial test data
    --
    INSERT INTO `roles` (`id`, `role`) VALUES
    (1, 'user'),
    (2, 'admin');
    
    INSERT INTO `users` (`id`, `username`, `password`, `email_address`, `first_name`, `last_name`, `active`) VALUES
    (1, 'test01', 'mypass', 't01@na.com', 'Joe', 'Blow', 1),
    (2, 'test02', 'mypass', 't02@na.com', 'Jane', 'Doe', 1),
    (3, 'test03', 'mypass', 't03@na.com', 'No', 'Go', 0);
    
    INSERT INTO `user_roles` (`user_id`, `role_id`) VALUES
    (1, 1),
    (2, 1),
    (3, 1),
    (1, 2);
    
    ALTER TABLE `user_roles
    ADD CONSTRAINT `user_role_ibfk_2` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
    ADD CONSTRAINT `user_role_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;

=item *

Load the user/roles data:

    mysql -u tutorial -p myapp < myapp02_mysql.sql

=item *

Update the model:

=over 4

=item *

Regenerate the model using the Catalyst "_create.pl" script:

    script/myapp_create.pl model DB DBIC::Schema MyApp::Schema create=static \
	components=TimeStamp,PassphraseColumn dbi:mysql:myapp 'tutorial' 'yourpassword' '{ AutoCommit => 1 }'

=back

=item *

Create the C<.sql> file for the hashed password data:

Open C<myapp03_mysql.sql> in your editor and enter:

    --
    -- Convert passwords to SHA-1 hashes
    --
    UPDATE users SET password = '{SSHA}esgz64CpHMo8pMfgIIszP13ft23z/zio04aCwNdm0wc6MDeloMUH4g==' WHERE id = 1;
    UPDATE users SET password = '{SSHA}FpGhpCJus+Ea9ne4ww8404HH+hJKW/fW+bAv1v6FuRUy2G7I2aoTRQ==' WHERE id = 2;
    UPDATE users SET password = '{SSHA}ZyGlpiHls8qFBSbHr3r5t/iqcZE602XLMbkSVRRNl6rF8imv1abQVg==' WHERE id = 3;

=item *

Load the user/roles data:

    mysql -u tutorial -p myapp < myapp03_mysql.sql

=back

=back


=head1 AUTHOR

Kennedy Clark, C<hkclark@gmail.com>

Feel free to contact the author for any errors or suggestions, but the
best way to report issues is via the CPAN RT Bug system at
L<https://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-Manual>.

Copyright 2006-2011, Kennedy Clark, under the
Creative Commons Attribution Share-Alike License Version 3.0
(L<http://creativecommons.org/licenses/by-sa/3.0/us/>).