Skip to content

Commit 878ca1d

Browse files
committed
Specified migration version
1 parent 6f99445 commit 878ca1d

46 files changed

Lines changed: 46 additions & 46 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

db/migrate/20131019133109_devise_create_users.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class DeviseCreateUsers < ActiveRecord::Migration
1+
class DeviseCreateUsers < ActiveRecord::Migration[4.2]
22
def change
33
create_table(:users) do |t|
44
## Database authenticatable

db/migrate/20131019133235_add_columns_to_users.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class AddColumnsToUsers < ActiveRecord::Migration
1+
class AddColumnsToUsers < ActiveRecord::Migration[4.2]
22
def change
33
add_column :users, :nickname, :string
44
add_column :users, :name, :string

db/migrate/20131019144930_add_bitcoin_address_to_users.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class AddBitcoinAddressToUsers < ActiveRecord::Migration
1+
class AddBitcoinAddressToUsers < ActiveRecord::Migration[4.2]
22
def change
33
add_column :users, :bitcoin_address, :string
44
end

db/migrate/20131019164745_create_projects.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateProjects < ActiveRecord::Migration
1+
class CreateProjects < ActiveRecord::Migration[4.2]
22
def change
33
create_table :projects do |t|
44
t.string :url

db/migrate/20131019170122_create_deposits.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateDeposits < ActiveRecord::Migration
1+
class CreateDeposits < ActiveRecord::Migration[4.2]
22
def change
33
create_table :deposits do |t|
44
t.references :project, index: true

db/migrate/20131019170659_create_sendmanies.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateSendmanies < ActiveRecord::Migration
1+
class CreateSendmanies < ActiveRecord::Migration[4.2]
22
def change
33
create_table :sendmanies do |t|
44
t.string :txid

db/migrate/20131019170925_create_tips.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateTips < ActiveRecord::Migration
1+
class CreateTips < ActiveRecord::Migration[4.2]
22
def change
33
create_table :tips do |t|
44
t.references :deposit, index: true

db/migrate/20131019175751_add_some_fields_to_projects.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class AddSomeFieldsToProjects < ActiveRecord::Migration
1+
class AddSomeFieldsToProjects < ActiveRecord::Migration[4.2]
22
def change
33
add_column :projects, :name, :string
44
add_column :projects, :full_name, :string

db/migrate/20131019205025_add_amount_to_deposit.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class AddAmountToDeposit < ActiveRecord::Migration
1+
class AddAmountToDeposit < ActiveRecord::Migration[4.2]
22
def change
33
add_column :deposits, :amount, :integer, :limit => 8
44
end

db/migrate/20131019211518_add_last_commit_to_projects.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class AddLastCommitToProjects < ActiveRecord::Migration
1+
class AddLastCommitToProjects < ActiveRecord::Migration[4.2]
22
def change
33
add_column :projects, :last_commit, :string
44
end

0 commit comments

Comments
 (0)