Changeset 184
- Timestamp:
- 01/22/2007 20:50:54 (22 months ago)
- Files:
-
- 1 modified
-
trunk/examples/campsh.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/campsh.rb
r156 r184 35 35 class CreateBasics < V 1.0 36 36 def self.up 37 create_table :campsh_commands, :force => true do |t|38 t.column :id, :integer, :null => false37 create_table :campsh_commands, :force => true, :id => false do |t| 38 t.column :id, :integer, :null => false, :primary_key => true, :auto_increment => true 39 39 t.column :author, :string, :limit => 40 40 40 t.column :name, :string, :limit => 255
