GithubHelp home page GithubHelp logo

and_node's Introduction

and_node

오픈소스를 활용한 안드로이드 서비스 개발(with Node.js)

MariaDB 테이블 생성문

bestfood_info 테이블 생성문
CREATE TABLE IF NOT EXISTS bestfood_info (
seq int(11) NOT NULL AUTO_INCREMENT,
member_seq int(11) NOT NULL,
name varchar(20) NOT NULL,
tel varchar(20) NOT NULL,
address varchar(50) NOT NULL,
latitude double NOT NULL,
longitude double NOT NULL,
description varchar(500) NOT NULL,
keep_cnt int(11) NOT NULL DEFAULT '0',
reg_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (seq`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

bestfood_info_image 테이블 생성문
CREATE TABLE IF NOT EXISTS bestfood_info_image (
seq int(11) NOT NULL AUTO_INCREMENT,
info_seq int(11) NOT NULL,
filename varchar(30) NOT NULL,
image_memo varchar(100) NOT NULL,
reg_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (seq)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

bestfood_keep 테이블 생성문
CREATE TABLE IF NOT EXISTS bestfood_keep (
seq int(11) NOT NULL AUTO_INCREMENT,
member_seq int(11) NOT NULL,
info_seq int(11) NOT NULL,
reg_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (seq)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

bestfood_member 테이블 생성문
CREATE TABLE IF NOT EXISTS bestfood_member (
seq int(11) NOT NULL AUTO_INCREMENT,
phone varchar(30) NOT NULL,
name varchar(30) DEFAULT NULL,
sextype varchar(10) DEFAULT NULL,
birthday varchar(30) DEFAULT NULL,
member_icon_filename varchar(50) DEFAULT NULL,
reg_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (seq)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

and_node's People

Contributors

kairo96 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.