Displaying 1 result from an estimated 1 matches for "addproductst".
Did you mean:
addproduct
2007 Jan 20
3
Making tables with SQLight
...ight?
-
drop table if exists products;
create table products (
id int not null auto_increment,
title varchar(100) not null,
description text not null,
image_url varchar(200) not null,
price decimal(10,2) not null,
primary key (id)
);
-
Also am I right in thinking this should go directly into my
addproductstable?
Basically if someone can explain to me the steps I need to do to make
tables in SQLight!
Thanks in advance.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to thi...