From e419fdd91a1301f8351f976476ce4c66871d848f Mon Sep 17 00:00:00 2001 From: LoveYourself Date: Wed, 16 Sep 2015 16:01:18 +0800 Subject: [PATCH 1/4] Create hello --- hello | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello diff --git a/hello b/hello new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/hello @@ -0,0 +1 @@ + From 2fd8dc79c04c9f455373911f323bb2f4bcdc2de1 Mon Sep 17 00:00:00 2001 From: LoveYourself Date: Wed, 16 Sep 2015 16:08:49 +0800 Subject: [PATCH 2/4] Update hello --- hello | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hello b/hello index 8b13789..efbadd0 100644 --- a/hello +++ b/hello @@ -1 +1,13 @@ +create table users ( + `id` varchar(50) not null, + `email` varchar(50) not null, + `passwd` varchar(50) not null, + `admin` bool not null, + `name` varchar(50) not null, + `image` varchar(500) not null, + `created_at` real not null, + unique key `idx_email` (`email`), + key `idx_created_at` (`created_at`), + primary key (`id`) +) engine=innodb default charset=utf8; From 5e1a9e2272abde8288b518f5c2cacc8010f38285 Mon Sep 17 00:00:00 2001 From: ilovechunfang Date: Wed, 16 Sep 2015 16:59:05 +0800 Subject: [PATCH 3/4] d d --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 466ee68..d22e8ec 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # SimplePythonInstance Python实例 +Python实例 + +Python实例 \ No newline at end of file From a72c04cf78efea0bf2ee7b85cee8b1a667f2f34d Mon Sep 17 00:00:00 2001 From: ilovechunfang Date: Wed, 16 Sep 2015 17:04:54 +0800 Subject: [PATCH 4/4] dd dd --- myhello.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 myhello.py diff --git a/myhello.py b/myhello.py new file mode 100644 index 0000000..efbadd0 --- /dev/null +++ b/myhello.py @@ -0,0 +1,13 @@ + +create table users ( + `id` varchar(50) not null, + `email` varchar(50) not null, + `passwd` varchar(50) not null, + `admin` bool not null, + `name` varchar(50) not null, + `image` varchar(500) not null, + `created_at` real not null, + unique key `idx_email` (`email`), + key `idx_created_at` (`created_at`), + primary key (`id`) +) engine=innodb default charset=utf8;