- Update 'webapp' library version
[gae-samples.git] / sql-shell / shell.sql
blob7402c7b962745617f53ad98e27a1ff8ba0439442
1 -- Copyright 2011 Google Inc. All rights reserved.
2 -- 
3 -- MySQL schema for the sql-shell sample app. After you've created a Cloud
4 -- SQL instance, run these statements in your instance's SQL Prompt tab:
5 -- https://code.google.com/apis/console/
7 CREATE DATABASE IF NOT EXISTS shell;
9 -- Now select shell from the database drop-down next to the Execute button.
10 -- Or, for a local MySQL database used by the App Engine SDK, run:
11 -- USE shell;
13 CREATE TABLE IF NOT EXISTS Foo (
14   id INT NOT NULL AUTO_INCREMENT,
15   bar VARCHAR(512),
16   PRIMARY KEY(id)
17 ) ENGINE=InnoDB;