mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-01 01:03:23 -05:00
9 lines
195 B
Ruby
9 lines
195 B
Ruby
|
class CreateCreditConversions < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table(:credit_conversions) do |t|
|
||
|
t.integer :conversion, :default => 1
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|