I did most of the initial work without any SCM. I am so bad.
[monoslider.git] / spec / db / schema.rb
blobe94deedb87a99aaced88995d24d2d205ed246be5
1 ActiveRecord::Schema.define(:version => 0) do
2   create_table :albums, :force => true do |t|
3     t.column :name, :string
4   end
5   
6   create_table :images, :force => true do |t|
7     t.column "parent_id",    :integer
8     t.column "content_type", :string
9     t.column "filename",     :string
10     t.column "thumbnail",    :string
11     t.column "size",         :integer
12     t.column "width",        :integer
13     t.column "height",       :integer
14   end
15 end