Sha256: 19ba07d93df7fab6bae6bc842d025b988e698e93bd9bb4cca47cb381d8e1a878

Contents?: true

Size: 334 Bytes

Versions: 5

Compression:

Stored size: 334 Bytes

Contents

ActiveRecord::Schema.define :version => 0 do
  
  create_table :users, :force => true do |t|
    t.string :first_name, :last_name, :password, :email
    t.boolean :is_admin
    t.timestamps
  end

  create_table :posts, :force => true do |t|
    t.string :title
    t.text :content
    t.boolean :approved
    t.timestamps
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
make_exportable-1.1.0 spec/schema.rb
make_exportable-1.0.3 spec/schema.rb
make_exportable-1.0.2 spec/schema.rb
make_exportable-1.0.1 spec/schema.rb
make_exportable-1.0.0 spec/schema.rb