]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/file_column/test/fixtures/schema.rb
Resyncing from head 10895:11795
[rails.git] / vendor / plugins / file_column / test / fixtures / schema.rb
1 ActiveRecord::Schema.define do
2   create_table :entries, :force => true do |t|
3     t.column :image, :string, :null => true
4     t.column :file, :string, :null => false
5   end
6   
7   create_table :movies, :force => true do |t|
8     t.column :movie, :string
9   end
10 end