File: schema.rb

package info (click to toggle)
liblocale-rails-ruby 2.0.5-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,224 kB
  • ctags: 295
  • sloc: ruby: 727; sh: 22; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
ActiveRecord::Schema.define(:version => 1) do

  create_table "articles", :force => true do |t|
    t.string   "title",       :default => "", :null => false
    t.text     "description",                 :null => false
    t.date     "lastupdate"
  end

end