Skip to content
This repository has been archived by the owner on Feb 15, 2019. It is now read-only.

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Sep 10, 2014
1 parent 8a6fe90 commit 985b6f6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
6 changes: 5 additions & 1 deletion resources/TODO
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ BA2800 5.0, orangish-red
<label id="fee_pct" class="col-sm-2 control-label" for="formGroupInputLarge"></label>

- consult a securities lawyer
- Work on some fiverr scripts for some 1 minute videos
+ Work on some fiverr scripts for some 1 minute videos
- Start working on a description field, youtube link field
- Start emulating indiegogo/kickstarter discover
- Use youtube thumbnail as main image, show them the link of how to change the thumbnail



8 changes: 8 additions & 0 deletions resources/bitpieces_practice.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1548,6 +1548,14 @@ ALTER TABLE creators DROP fee_pct;
ALTER TABLE creators ADD COLUMN fee_pct DOUBLE UNSIGNED NOT NULL DEFAULT 0.01 ;
ALTER TABLE creators MODIFY fee_pct DOUBLE UNSIGNED NOT NULL DEFAULT 0.01 AFTER verified;
ALTER TABLE creators_page_fields DROP description;
ALTER TABLE creators_page_fields DROP youtube_link;
ALTER TABLE creators_page_fields ADD COLUMN description VARCHAR(141) NOT NULL DEFAULT 'no description yet' AFTER creators_id;
ALTER TABLE creators_page_fields ADD COLUMN youtube_link VARCHAR(300) NOT NULL DEFAULT 'no youtube link yet' AFTER creators_id;
-- Add the description, and picture link
select * from creators
Expand Down
2 changes: 2 additions & 0 deletions resources/testweb/creator_main.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ <h1 id="page_title"> </h1>
</div>



<div id="main_body" class="row">
<h1>Page body</h1>
<script id="main_body_template" type="x-tmpl-mustache">
<p class="lead">{{.}}</p>
</script>
Expand Down

0 comments on commit 985b6f6

Please sign in to comment.