Giter VIP home page Giter VIP logo

cub-board's People

Contributors

cubrid-admin avatar

cub-board's Issues

Create auto-generated board system using cub_board_t and cub_user table.

자동 생성 게시판은 아래와 같이 cub_board_t와 cub_user 테이블을 사용해서 간단하게 만들 수 있을 것입니다.
cub_board_t는 게시판을 만드는 템플릿 역할을 할 것입니다.
즉, cub_board_t의 name은 게시판을 구성할 실제 데이터베이스 테이블 이름이 될 것입니다.
그리고 title은 게시판의 실제 이름을 의미할 것입니다. 예를 들면 "공지사항", "Q&A" 등등

Create table cub_user (
user_id integer not null primary key,
password varchar(12),
name varchar(32),
status char(1),
created datetime,
updated datetime
);

Create table cub_board_t (
num integer not null primary key,
user_id integer not null,
name varchar(32) not null,
title varchar(256),
board_type char(1),
status char(1),
created datetime,
updated datetime
);

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.