Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

broken models.sql #10

Closed
cheluskin opened this issue Dec 10, 2011 · 1 comment
Closed

broken models.sql #10

cheluskin opened this issue Dec 10, 2011 · 1 comment

Comments

@cheluskin
Copy link

CREATE TABLE project_need (
id int(11) NOT NULL AUTO_INCREMENT,
type varchar(10) DEFAULT NULL,
subtype varchar(10) DEFAULT NULL,
request varchar(64) DEFAULT NULL,
quantity int(11) DEFAULT NULL,
description text,
project_id int(11) NOT NULL,
date date DEFAULT NULL,
time varchar(32) DEFAULT NULL,
duration varchar(64) DEFAULT NULL,
address varchar(256) DEFAULT NULL,
event_id int(11) DEFAULT NULL,
PRIMARY KEY (id),
KEY project_id (project_id),
KEY event_id (event_id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

need string

subtype varchar(10) DEFAULT NULL,

@cybertoast
Copy link
Collaborator

cheluskin, The issue is handled by migration: giveaminute/migrations/versions/009_Add_a_sub-type_field_to_the_project_need_table.py.
The installation and setup process requires that all the migrations be run. Please let us know if there's still a problem with this or if I'm misunderstanding the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants