aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/schema.rb
blob: f7fe31dc4e19597d81530db39deb39f10f3158ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
ActiveRecord::Schema.define do
  create_table :topics, :force => true do |t|
    t.string   :title
    t.string   :author_name
    t.text     :content
    t.boolean  :approved, :default => true
    t.string   :type
  end

  create_table :developers, :force => true do |t|
    t.string   :name
  end
end