project.sql 248 B

12345678910
  1. create table if not exists devcloud.project
  2. (
  3. id int not null
  4. primary key,
  5. name varchar(128) null,
  6. description varchar(512) null,
  7. git_remote_url varchar(512) not null
  8. )
  9. charset = utf8;