Making tables with SQLight

Hi, Im using locomotive and running SQLight. Im confused about making
tables with sqlight.

Im following the depot example from ‘agile web development with rails’.
When trying to make the table ‘products’ is there a difference when
using SQLight rather than MySQL?

Here is the DDL for MySQL, how do I make this table with SQLight?

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.

if you were to use rails migrations you wouldn’t have to worry about
it database specific language.

Chris

The first version of the agile book is very very outdated, rails hove
along pretty fast.

Do migrations instead. Write the scremas in ruby and make rails deal
with the sql.

http://wiki.rubyonrails.com/rails/pages/UsingMigrations
http://wiki.rubyonrails.com/rails/pages/HowToUseMigrations
http://wiki.rubyonrails.com/rails/pages/UnderstandingMigrations

Thanks for your help. This is alot better!